12 lines
312 B
Gherkin
12 lines
312 B
Gherkin
Feature: Animal feature
|
|
|
|
Scenario: If we feed a hungry cat it will no longer be hungry
|
|
Given a hungry cat
|
|
When I feed the cat
|
|
Then the cat is not hungry
|
|
|
|
Scenario: If we feed a satiated cat it will not become hungry
|
|
Given a satiated cat
|
|
When I feed the cat
|
|
Then the cat is not hungry
|