mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Adding a bunch of Unit Tests
This commit is contained in:
17
src/tixlplugins/testdummy/__init__.py
Normal file
17
src/tixlplugins/testdummy/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from django.apps import AppConfig
|
||||
from tixlbase.plugins import PluginType
|
||||
|
||||
|
||||
class TestDummyApp(AppConfig):
|
||||
name = 'tixlplugins.testdummy'
|
||||
verbose_name = '.testdummy'
|
||||
|
||||
class TixlPluginMeta:
|
||||
type = PluginType.RESTRICTION
|
||||
name = '.testdummy'
|
||||
version = '1.0.0'
|
||||
|
||||
def ready(self):
|
||||
from . import signals # NOQA
|
||||
|
||||
default_app_config = 'tixlplugins.testdummy.TestDummyApp'
|
||||
Reference in New Issue
Block a user