summaryrefslogtreecommitdiff
path: root/yarns/100-hello.yarn
blob: d7194972dc2d6d1527a3860a71b1c1be1e47ba7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Controller smoke test

This scenario is just for making sure we can, in our tests, start and
stop the controller, and make requests to it.

    SCENARIO controller smoke test
    GIVEN a running controller instance

    WHEN user calls GET /version
    THEN response has status 200, and JSON body "{ "version": "1.0" }"

    WHEN user calls GET /blatherskite
    THEN response has status 404

    FINALLY stop controller instance