Completed
Push — master ( 2b1567...aa9a3d )
by Daniel
08:37
created

test_gw_app_start()   A

Complexity

Conditions 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 4
rs 10
1
from click.testing import CliRunner
2
from groundwork_web.applications import groundwork_web_app
3
4
5
def test_gw_app_start():
6
    runner = CliRunner()
7
    app = groundwork_web_app.register_app()
8
    runner.invoke(app.commands._click_root_command)
9