Files
deck/tests/integration/features/decks.feature
Julius Härtl 1b02e7fb25 Move to behat helper library
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-05-25 18:18:07 +02:00

16 lines
475 B
Gherkin

Feature: decks
Background:
Given user "admin" exists
Given user "user0" exists
Scenario: Create a new board
Given Using web as user "admin"
When creates a board named "MyBoard" with color "000000"
Then the HTTP status code should be "200"
And the Content-Type should be "application/json; charset=utf-8"
And the response should be a JSON array with the following mandatory values
|key|value|
|title|MyBoard|
|color|000000|