Scenario Outlines
One of the simplest, yet most useful features of Voight Kampff is the ability to provide a list of examples that will all be tested within one Scenario.
Feature: current-weather
Scenario: current local weather
Given an English speaking user
When the user says "tell me the weather"
Then "my-weather-skill" should reply with "Right now, it's overcast clouds and 32 degrees."Feature: current-weather
Scenario Outline: current local weather
Given an english speaking user
When the user says "<current local weather>"
Then "mycroft-weather" should reply with "Right now, it's overcast clouds and 32 degrees."
Examples: local weather questions # Table heading
| current local weather | # Column heading
| tell me the weather | # First value
| what's the weather like | # Second value
| current weather | # Third valueMultiple dependent variables
Last updated
Was this helpful?