2021-12-01 17:02:23 +01:00
|
|
|
from halfapi.testing.test_domain import TestDomain
|
|
|
|
from dummy_domain import __name__, __routers__
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
class TestDummyDomain(TestDomain):
|
|
|
|
DOMAIN = __name__
|
|
|
|
ROUTERS = __routers__
|
|
|
|
|
|
|
|
def test_domain(self):
|
|
|
|
self.check_domain()
|
2021-12-04 09:56:14 +01:00
|
|
|
|
|
|
|
def test_routes(self):
|
|
|
|
self.check_routes()
|