OpenSlides/tests/integration/test_plugin/apps.py

16 lines
411 B
Python
Raw Normal View History

2016-02-16 22:51:38 +01:00
from django.apps import AppConfig
from . import __description__, __license__, __verbose_name__
2016-02-16 22:51:38 +01:00
class TestPluginAppConfig(AppConfig):
"""
Test Plugin for the test tests.integration.core.test_views.VersionView
"""
2019-01-06 16:22:33 +01:00
name = "tests.integration.test_plugin"
label = "tests.integration.test_plugin"
2016-02-16 22:51:38 +01:00
verbose_name = __verbose_name__
description = __description__
license = __license__