CucumberGherkin.parse_path
You're seeing just the function
parse_path
, go back to CucumberGherkin module for more information.
Link to this function
parse_path(path, opts)
Parse a single feature file and return a list of envelopes. You can provide the following opts in a list:
- :no_source
- :no_ast
- :no_pickles
Examples
iex> CucumberGherkin.parse_path("testdata/good/background.feature", [:no_ast, :no_pickles])
[
%CucumberMessages.Envelope{
__uf__: [],
message: {:source,
%CucumberMessages.Source{
# ...
}}
}
]