You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

progress_formatter.feature 857 B

2 years ago
12345678910111213141516171819202122232425262728293031
  1. Feature: Progress output formatter
  2. Background:
  3. Given a file named "features/scenario_outline_with_undefined_steps.feature" with:
  4. """
  5. Feature:
  6. Scenario Outline:
  7. Given this step is undefined
  8. Examples:
  9. |foo|
  10. |bar|
  11. """
  12. Scenario: an scenario outline, one undefined step, one random example, expand flag on
  13. When I run `cucumber features/scenario_outline_with_undefined_steps.feature --format progress --expand `
  14. Then it should pass
  15. Scenario: when using a profile the output should include 'Using the default profile...'
  16. And a file named "cucumber.yml" with:
  17. """
  18. default: -r features
  19. """
  20. When I run `cucumber --profile default --format progress`
  21. Then it should pass
  22. And the output should contain:
  23. """
  24. Using the default profile...
  25. """

No Description

Contributors (1)