Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Issue with Scenario Outline Data Containing Parenthesis #299

Merged
merged 3 commits into from
Mar 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

- Word document is corrupt if a Feature has no description ([#261](https://github.com/picklesdoc/pickles/issues/261)) (by [@dirkrombauts](https://github.com/dirkrombauts)).
- The Cucumber JSON test result provider should deal with background steps correctly ([#293](https://github.com/picklesdoc/pickles/issues/293)) (by [@dirkrombauts](https://github.com/dirkrombauts) based on [an idea by MikeThomas64](https://github.com/picklesdoc/pickles/pull/251)).
- Scenario Outline with parenthesis parses correctly and reports the correct result ([PR#299](https://github.com/picklesdoc/pickles/pull/299)) (by [@ocsurfnut](https://github.com/ocsurfnut))

## [2.3.0] - 2016-01-27

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ public WhenParsingCucumberJsonFromJSResultsFile()
base.ThenCanReadResultsWithBackslashes();
}

[Test]
public new void ThenCanReadResultsWithParenthesis()
{
base.ThenCanReadResultsWithParenthesis();
}

[Test]
public new void ThenCanReadResultOfScenarioWithFailingBackground()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ public WhenParsingCucumberJsonFromRubyResultsFile()
base.ThenCanReadResultsWithBackslashes();
}

[Test]
public new void ThenCanReadResultsWithParenthesis()
{
base.ThenCanReadResultsWithParenthesis();
}

[Test]
public new void ThenCanReadResultOfScenarioWithFailingBackground()
{
Expand Down
Loading