Guest User

Untitled

a guest
Jan 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. C:\wpfbdd>icucumber
  2. Feature: Sheep Counter
  3. As a farmer
  4. In order to prevent any straggling sheep from getting eaten by the big bad wolf
  5. I want to be able to keep track of my sheep as they move from field to field
  6.  
  7. Scenario: Before I start moving my sheep # features\sheep_counter.feature:6
  8. When I start up my sheep counter # features/step_definitions/sheep_counter_steps.rb:1
  9. Bewildr::ElementDoesntExist (Bewildr::ElementDoesntExist)
  10. features\sheep_counter.feature:7:in `When I start up my sheep counter'
  11. Then it tells me that no sheep have moved field yet # features/step_definitions/sheep_counter_steps.rb:7
  12.  
  13. Scenario: Move one sheep # features\sheep_counter.feature:10
  14. Given I have started my sheep counter # features/step_definitions/sheep_counter_steps.rb:11
  15. Bewildr::ElementDoesntExist (Bewildr::ElementDoesntExist)
  16. features\sheep_counter.feature:11:in `Given I have started my sheep counter'
  17. When I move one sheep # features/step_definitions/sheep_counter_steps.rb:15
  18. Then it tells me that 1 sheep has moved # features/step_definitions/sheep_counter_steps.rb:19
  19.  
  20. Scenario: Move two sheep # features\sheep_counter.feature:15
  21. Given I have started my sheep counter # features/step_definitions/sheep_counter_steps.rb:11
  22. Bewildr::ElementDoesntExist (Bewildr::ElementDoesntExist)
  23. features\sheep_counter.feature:16:in `Given I have started my sheep counter'
  24. And I have moved 1 sheep already # features/step_definitions/sheep_counter_steps.rb:23
  25. When I move another sheep # features/step_definitions/sheep_counter_steps.rb:29
  26. Then it tells me that 2 sheep have moved # features/step_definitions/sheep_counter_steps.rb:19
  27.  
  28. Failing Scenarios:
  29. cucumber features\sheep_counter.feature:6 # Scenario: Before I start moving my sheep
  30. cucumber features\sheep_counter.feature:10 # Scenario: Move one sheep
  31. cucumber features\sheep_counter.feature:15 # Scenario: Move two sheep
  32.  
  33. 3 scenarios (3 failed)
  34. 9 steps (3 failed, 6 skipped)
  35. 1m31.462s
Add Comment
Please, Sign In to add comment