Completed
Push — master ( 6fd567...f65269 )
by Daniel
90:27 queued 15s
created

test_gw_app_start()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
c 1
b 1
f 0
dl 0
loc 5
rs 9.4285
1
# This file tests read-to-use applications, which are provided by groundwork.
2
3
from click.testing import CliRunner
4
from groundwork.applications import gw_base_app
5
6
7
def test_gw_app_start():
8
    runner = CliRunner()
9
    app = gw_base_app.register_app()
10
    app = gw_base_app.configure_app(app)
11
    runner.invoke(app.commands._click_root_command)
12