aboutsummaryrefslogtreecommitdiffstats
path: root/tests/browsable_api/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/browsable_api/models.py')
-rw-r--r--tests/browsable_api/models.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/browsable_api/models.py b/tests/browsable_api/models.py
deleted file mode 100644
index 05c6c23b..00000000
--- a/tests/browsable_api/models.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from django.db import models
-
-
-class Foo(models.Model):
- name = models.CharField(max_length=30)
-
-
-class Bar(models.Model):
- foo = models.ForeignKey("Foo", editable=False)