default.txt 670 B

12345678910111213141516171819202122232425
  1. # language: en
  2. Feature: Addition
  3. In order to avoid silly mistakes
  4. As a math idiot
  5. I want to be told the sum of two numbers
  6. @this_is_a_tag
  7. Scenario Outline: Add two numbers
  8. * I have a calculator
  9. Given I have entered <input_1> into the calculator
  10. And I have entered <input_2> into the calculator
  11. When I press <button>
  12. Then the result should be <output> on the screen
  13. And I have a string like
  14. """
  15. Here is
  16. some
  17. multiline text
  18. """
  19. Examples:
  20. | input_1 | input_2 | button | output |
  21. | 20 | 30 | add | 50 |
  22. | 2 | 5 | add | 7 |
  23. | 0 | 40 | add | 40 |