What is a pickle ? #2307
|
Hello, I'm working on implement Cucumber for Xslt language, and actually I'm on generating messages described in compatibility-kit. I can not understand what are pickles, for example https://github.com/cucumber/compatibility-kit/blob/c376061b4e2604af107d187aca05cacc4da2005a/devkit/samples/all-statuses/all-statuses.ndjson#L4 and following lines. Is a pickle one test from a feature / scenario / scenario template ? Thanks in advance, |
Replies: 1 comment 2 replies
|
Oh that is kinda cool! From https://github.com/cucumber/messages/blob/main/jsonschema/messages.md#pickle
So when deriving a
If you are implementing a Gherkin parser, you could also take a look at the test data we use for that: https://github.com/cucumber/gherkin/tree/main/testdata |
Oh that is kinda cool!
From https://github.com/cucumber/messages/blob/main/jsonschema/messages.md#pickle
So when deriving a
Picklefrom aGherkinDocument:Scenariobecomes a single pickle.Scenario Outlinewith 5 examples results in 5 pickles, one for each example.B…