Generated: Tue 2013-05-21 16:43 CEST
Source file: /home/dkaufhold/projects/django-hero-slider/src/hero_slider/tests/test_app/models.py
Stats: 2 executed, 0 missed, 1 excluded, 4 ignored
"""Dummy models for the tests of the ``hero_slider`` app."""from django.db import modelsclass DummyModel(models.Model): """DummyModel for tests of the ``hero_slider`` app.""" name = models.CharField(max_length=256)