summaryrefslogtreecommitdiff
path: root/tests/regressiontests/initial_sql_regress/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/initial_sql_regress/tests.py')
-rw-r--r--tests/regressiontests/initial_sql_regress/tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/regressiontests/initial_sql_regress/tests.py b/tests/regressiontests/initial_sql_regress/tests.py
new file mode 100644
index 0000000000..2b3ca91f91
--- /dev/null
+++ b/tests/regressiontests/initial_sql_regress/tests.py
@@ -0,0 +1,8 @@
+from django.test import TestCase
+
+from models import Simple
+
+
+class InitialSQLTests(TestCase):
+ def test_initial_sql(self):
+ self.assertEqual(Simple.objects.count(), 7)