OpenSlides/tests/integration/test_plugin/apps.py
2019-01-08 21:51:52 +01:00

16 lines
411 B
Python

from django.apps import AppConfig
from . import __description__, __license__, __verbose_name__
class TestPluginAppConfig(AppConfig):
"""
Test Plugin for the test tests.integration.core.test_views.VersionView
"""
name = "tests.integration.test_plugin"
label = "tests.integration.test_plugin"
verbose_name = __verbose_name__
description = __description__
license = __license__