added ModelSerializer tests

This commit is contained in:
Paul Bailey 2017-11-13 20:35:00 +00:00
parent c72e7e55eb
commit 345fe877c4

View File

@ -0,0 +1,6 @@
from django.db import models
class MyFakeModel(models.Model):
cool_name = models.CharField(max_length=50)
created = models.DateTimeField(auto_now_add=True)