Skip to content

Commit

Permalink
Special chars need to be replaced (#375)
Browse files Browse the repository at this point in the history
* Special chars need to be replaced

There are some more special chars (especially german Umlaute) that need to be replaced for the match to be successfull.

* Special chars need to be replaced #375
Creating test cases and fixing handling of umlauts and ampersand

* Changed indentation
  • Loading branch information
thopark authored and dirkrombauts committed Sep 29, 2016
1 parent 3a4786d commit b2d5f58
Show file tree
Hide file tree
Showing 36 changed files with 3,460 additions and 2,679 deletions.
2 changes: 1 addition & 1 deletion src/Pickles/.vs/config/applicationhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
</site>
<site name="Pickles.BaseDhtmlFiles" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\src\pickles\src\Pickles\Pickles.BaseDhtmlFiles" />
<virtualDirectory path="/" physicalPath="C:\DevProjects\Tools\pickles\src\Pickles\Pickles.BaseDhtmlFiles" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:52000:localhost" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,17 @@ public WhenParsingCucumberJsonFromJSResultsFile()
{
base.ThenCanReadResultOfScenarioOutlineWithSpecialCharacters();
}

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

[Test]
public new void ThenCanReadResultOfScenarioOutlineWithAmpersand()
{
base.ThenCanReadResultOfScenarioOutlineWithAmpersand();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,17 @@ public WhenParsingCucumberJsonFromRubyResultsFile()
{
base.ThenCanReadResultOfScenarioOutlineWithSpecialCharacters();
}

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

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

0 comments on commit b2d5f58

Please sign in to comment.