2013-07-02 03:49:11 +08:00
|
|
|
from unittest import TestCase
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
from django.test import TestCase as DjangoTestCase
|
|
|
|
|
|
|
|
|
2013-07-02 03:49:11 +08:00
|
|
|
class TestVanillaUnittest(TestCase):
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
def test_sample(self):
|
|
|
|
self.assertEqual(1, 1)
|
|
|
|
|
|
|
|
|
|
|
|
class TestDjangoTestCase(DjangoTestCase):
|
|
|
|
|
|
|
|
def test_sample(self):
|
|
|
|
self.assertEqual(1, 1)
|