File.feature 607 B

12345678910111213141516171819202122
  1. Feature: Run gherkin
  2. In order to test a feature
  3. As a user
  4. I need to be able to see output
  5. Scenario: Check file exists
  6. Given I have terminal opened
  7. When I am in current directory
  8. Then there is a file "scenario.suite.yml"
  9. And there are keywords in "scenario.suite.yml"
  10. | class_name | ScenarioGuy |
  11. | enabled | Filesystem |
  12. Scenario: Describe a new feature
  13. Given I have only idea of what's going on here
  14. Scenario: Check file once more
  15. Given I am in current directory
  16. When there is a file "scenario.suite.yml"
  17. Then I see file "scenario.suite.yml"