13 lines
326 B
Python
13 lines
326 B
Python
"""
|
|
This file demonstrates writing tests using the unittest module. These will pass
|
|
when you run "manage.py test".
|
|
|
|
Replace this with more appropriate tests for your application.
|
|
"""
|
|
|
|
from django.test import TestCase
|
|
from record.models import Record, Link
|
|
|
|
class RecordTests(TestCase):
|
|
def test_boring(self):
|
|
pass
|