12 lines
242 B
Python
12 lines
242 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
# Create your tests here.
|
||
|
|
||
|
import datetime
|
||
|
|
||
|
from django.utils import timezone
|
||
|
from django.test import TestCase
|
||
|
from django.core.urlresolvers import reverse
|
||
|
|
||
|
from .models import Event
|
||
|
# come up with some tests
|