summaryrefslogtreecommitdiff
path: root/tests/app_cache/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app_cache/models.py')
-rw-r--r--tests/app_cache/models.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/app_cache/models.py b/tests/app_cache/models.py
deleted file mode 100644
index 9306830f9c..0000000000
--- a/tests/app_cache/models.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from django.apps.cache import AppCache
-from django.db import models
-
-# We're testing app cache presence on load, so this is handy.
-
-new_app_cache = AppCache()
-
-
-class TotallyNormal(models.Model):
- name = models.CharField(max_length=255)
-
-
-class SoAlternative(models.Model):
- name = models.CharField(max_length=255)
-
- class Meta:
- app_cache = new_app_cache