aboutsummaryrefslogtreecommitdiffstats
path: root/tests/browsable_api/models.py
diff options
context:
space:
mode:
authorBrandon Cazander2015-01-24 11:00:36 -0800
committerBrandon Cazander2015-01-24 11:00:36 -0800
commit6c083b12a1162bf8e0f51e6c52ff13a1bd621cf2 (patch)
tree2c2d03bdc11f78c40c1a2b54aef32607af041965 /tests/browsable_api/models.py
parented04725822d5dc9a90c9c6e5c14d85083ae6ff28 (diff)
downloaddjango-rest-framework-6c083b12a1162bf8e0f51e6c52ff13a1bd621cf2.tar.bz2
Streamline test for #2455
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)