I am trying to use django-nose doctrines. All my doctrines work, with the exception of not any doctrines inside the model (if it is not abstract).
class TestModel1(models.Model): """ >>> print 'pass' pass """ pass class TestModel2(models.Model): """ >>> print 'pass' pass """ class Meta: abstract = True pass
The first lesson does not start, but the second does. Why is this?
source share