diff --git a/tests/async/models.py b/tests/async/models.py index 0fd606b07e..8cb051258c 100644 --- a/tests/async/models.py +++ b/tests/async/models.py @@ -1,5 +1,11 @@ from django.db import models +from django.utils import timezone + + +class RelatedModel(models.Model): + simple = models.ForeignKey("SimpleModel", models.CASCADE, null=True) class SimpleModel(models.Model): field = models.IntegerField() + created = models.DateTimeField(default=timezone.now) diff --git a/tests/async_queryset/tests.py b/tests/async/test_async_queryset.py similarity index 99% rename from tests/async_queryset/tests.py rename to tests/async/test_async_queryset.py index 1b6dddce1f..253183ea10 100644 --- a/tests/async_queryset/tests.py +++ b/tests/async/test_async_queryset.py @@ -243,6 +243,6 @@ class AsyncQuerySetTest(TestCase): self.fail(f"QuerySet.aexplain() result is not valid JSON: {e}") async def test_raw(self): - sql = "SELECT id, field FROM async_queryset_simplemodel WHERE created=%s" + sql = "SELECT id, field FROM async_simplemodel WHERE created=%s" qs = SimpleModel.objects.raw(sql, [self.s1.created]) self.assertEqual([o async for o in qs], [self.s1]) diff --git a/tests/async_queryset/__init__.py b/tests/async_queryset/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/async_queryset/models.py b/tests/async_queryset/models.py deleted file mode 100644 index 8cb051258c..0000000000 --- a/tests/async_queryset/models.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.db import models -from django.utils import timezone - - -class RelatedModel(models.Model): - simple = models.ForeignKey("SimpleModel", models.CASCADE, null=True) - - -class SimpleModel(models.Model): - field = models.IntegerField() - created = models.DateTimeField(default=timezone.now)