diff options
Diffstat (limited to 'tests/djapp')
-rw-r--r-- | tests/djapp/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/djapp/models.py b/tests/djapp/models.py index e98279d..a65b50a 100644 --- a/tests/djapp/models.py +++ b/tests/djapp/models.py @@ -74,3 +74,7 @@ if Image is not None: # PIL is available else: class WithImage(models.Model): pass + + +class WithSignals(models.Model): + foo = models.CharField(max_length=20)
\ No newline at end of file |