2016-02-16 22:51:38 +01:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
2017-12-01 10:10:35 +01:00
|
|
|
from . import __description__, __license__, __verbose_name__
|
2016-02-16 22:51:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
class TestPluginAppConfig(AppConfig):
|
2017-08-30 00:07:54 +02:00
|
|
|
"""
|
|
|
|
Test Plugin for the test tests.integration.core.test_views.VersionView
|
|
|
|
"""
|
2016-02-16 22:51:38 +01:00
|
|
|
name = 'tests.integration.test_plugin'
|
|
|
|
label = 'tests.integration.test_plugin'
|
|
|
|
verbose_name = __verbose_name__
|
|
|
|
description = __description__
|
2017-12-01 10:10:35 +01:00
|
|
|
license = __license__
|