2010-10-12 09:59:28 +08:00
|
|
|
from django.test import TestCase
|
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
from .models import Simple
|
2010-10-12 09:59:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
class InitialSQLTests(TestCase):
|
|
|
|
def test_initial_sql(self):
|
2011-01-19 00:43:01 +08:00
|
|
|
# The format of the included SQL file for this test suite is important.
|
|
|
|
# It must end with a trailing newline in order to test the fix for #2161.
|
|
|
|
|
|
|
|
# However, as pointed out by #14661, test data loaded by custom SQL
|
|
|
|
# can't be relied upon; as a result, the test framework flushes the
|
|
|
|
# data contents before every test. This test validates that this has
|
|
|
|
# occurred.
|
|
|
|
self.assertEqual(Simple.objects.count(), 0)
|