haystack/test/core/pipeline/features/pipeline_run.feature

22 lines
597 B
Gherkin
Raw Normal View History

Feature: Pipeline running
Scenario Outline: Running a correct Pipeline
Given a pipeline <kind>
When I run the Pipeline
Then it should return the expected result
And components ran in the expected order
Examples:
| kind |
| that has no components |
| that is linear |
Scenario Outline: Running a bad Pipeline
Given a pipeline <kind>
When I run the Pipeline
Then it must have raised <exception>
Examples:
| kind | exception |
| that has an infinite loop | PipelineMaxLoops |