aboutsummaryrefslogtreecommitdiffstats
path: root/tests/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/models.py')
-rw-r--r--tests/models.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/models.py b/tests/models.py
index e378c1cf..fe064b46 100644
--- a/tests/models.py
+++ b/tests/models.py
@@ -184,10 +184,3 @@ class NullableOneToOneSource(RESTFrameworkModel):
class BasicModelSerializer(serializers.ModelSerializer):
class Meta:
model = BasicModel
-
-
-# Models to test filters
-class FilterableItem(models.Model):
- text = models.CharField(max_length=100)
- decimal = models.DecimalField(max_digits=4, decimal_places=2)
- date = models.DateField()