tables.feature 466 B

123456789101112131415161718192021
  1. Feature: A scenario outline
  2. # COMMENT
  3. Scenario Outline:
  4. Given I add <a> and <b>
  5. # comment
  6. When I pass a table argument
  7. | foo | bar |
  8. | bar | baz |
  9. #comment
  10. Then I the result should be <c>
  11. # comment
  12. And the table should be properly escaped:
  13. | \|a | b | c |
  14. | 1 | \|2 | 3 |
  15. | 2 | 3 | \|4 |
  16. #comment
  17. Examples:
  18. | a | b | c |
  19. | 1 | \|2 | 3 |
  20. | 2 | 3 | 4 |