File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
src/TestStack.BDDfy.Tests Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,5 @@ build_script:
1313test : off
1414skip_tags : true
1515
16- after_build :
17- - cmd : nuget pack src\TestStack.BDDfy\TestStack.BDDfy.nuspec -BasePath src\TestStack.BDDfy\ -version "%GitVersion_NuGetVersion%" -prop "configuration=%CONFIGURATION%"
18- - cmd : appveyor PushArtifact "TestStack.BDDfy.%GitVersion_NuGetVersion%.nupkg"
19-
20- - cmd : 7z a "TestStack.BDDfy_%GitVersion_NuGetVersion%.zip" -r src\TestStack.BDDfy\bin\%CONFIGURATION%\*.*
21- - cmd : appveyor PushArtifact "TestStack.BDDfy_%GitVersion_NuGetVersion%.zip"
22-
2316cache :
2417 - src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ public void OneLetterWordInTheBeginningOfStringIsTurnedIntoAWord()
6767 [ InlineData ( "WhenMethodTakes__one__and__two__parameters" , "When method takes <one> and <two> parameters" ) ]
6868 public void CanDealWithExampleStepNames ( string stepName , string expectedStepTitle )
6969 {
70- NetToString . Convert ( stepName ) . ShouldBe ( expectedStepTitle , Case . Sensitive ) ;
70+ NetToString . Convert ( stepName ) . ShouldBe ( expectedStepTitle ) ;
7171 }
7272
7373 [ Theory ]
7474 [ InlineData ( "GivenThereAre__två__Cucumbers" , "Given there are <två> cucumbers" ) ]
7575 public void ReportsIllegalExampleStepNames ( string stepName , string expectedStepTitle ) {
7676 var exception = Record . Exception ( ( ) => {
77- NetToString . Convert ( stepName ) . ShouldBe ( expectedStepTitle , Case . Sensitive ) ;
77+ NetToString . Convert ( stepName ) . ShouldBe ( expectedStepTitle ) ;
7878 } ) ;
7979
8080 exception . ShouldNotBeNull ( ) ;
You can’t perform that action at this time.
0 commit comments