wagtail/wagtail/tests/testapp/apps.py
Karl Hobley 682232ca5b Moved test app into subdirectory
- Gives a nice separation between test app and test configuration
- Allows us to cleanly add separate test apps
2015-03-30 12:48:27 +01:00

7 lines
166 B
Python

from django.apps import AppConfig
class WagtailTestsAppConfig(AppConfig):
name = 'wagtail.tests.testapp'
label = 'tests'
verbose_name = "Wagtail tests"