8 lines
295 B
Gherkin
8 lines
295 B
Gherkin
Feature: Manage projects
|
|
Scenario: Get list of all projects
|
|
When I send GET '/v2.0/projects' query
|
|
Then response should be '200'
|
|
And the Content-Type header should include 'application/json'
|
|
And the JSON response should be an array
|
|
And the array elements should be strings
|