summaryrefslogtreecommitdiff
path: root/tests/regressiontests/initial_sql_regress/tests.py
blob: 2b3ca91f91a1ba9b2896646d6f63a90d1691a84b (plain)
1
2
3
4
5
6
7
8
from django.test import TestCase

from models import Simple


class InitialSQLTests(TestCase):
    def test_initial_sql(self):
        self.assertEqual(Simple.objects.count(), 7)