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

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

    SCENARIO backend smoke test
    GIVEN a running backend instance

    WHEN client makes request GET /version
    THEN HTTP status code is 200
    AND result matches { "version": "1.0" }

    WHEN client makes request GET /blatherskite
    THEN HTTP status code is 404

    FINALLY stop backend instance