summaryrefslogtreecommitdiff
path: root/tests/regressiontests/initial_sql_regress/tests.py
blob: 815b75a9bb6d17fd3fa8e41a1bcb1b03583b84e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.test import TestCase

from .models import Simple


class InitialSQLTests(TestCase):
    def test_initial_sql(self):
        # 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)