| 11 | """Create some sample data re-used in many of the tests below.""" |
| 12 | |
| 13 | class Event(Document): |
| 14 | title = StringField() |
| 15 | date = DateTimeField() |
| 16 | location = point_field_class() |
| 17 | |
| 18 | def __unicode__(self): |
| 19 | return self.title |
| 20 | |
| 21 | self.Event = Event |
| 22 |
searching dependent graphs…