Improved test structure

This commit is contained in:
2021-03-12 16:13:17 +01:00
parent db21d88721
commit f36d8c3e9f
13 changed files with 5 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
from tests.custom.general.application import Application
from tests.custom.general.startup import Startup
if __name__ == '__main__':
app = Application()
app.use_startup(Startup)
app.build()
app.run()