forked from CGM_Public/pretix_original
Move testdummy plugin to the test directory
This commit is contained in:
18
src/tests/testdummy/__init__.py
Normal file
18
src/tests/testdummy/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from django.apps import AppConfig
|
||||
from pretix.base.plugins import PluginType
|
||||
|
||||
|
||||
class TestDummyApp(AppConfig):
|
||||
name = 'tests.testdummy'
|
||||
verbose_name = '.testdummy'
|
||||
|
||||
class PretixPluginMeta:
|
||||
type = PluginType.RESTRICTION
|
||||
name = '.testdummy'
|
||||
version = '1.0.0'
|
||||
|
||||
def ready(self):
|
||||
from tests.testdummy import signals
|
||||
|
||||
|
||||
default_app_config = 'tests.testdummy.TestDummyApp'
|
||||
Reference in New Issue
Block a user