Tag and test case name querying are now case insensitive

This commit is contained in:
Phil Nash 2013-03-12 18:47:53 +00:00
parent d78cfe1275
commit 17479c6e49
4 changed files with 17 additions and 5 deletions

View file

@ -23,7 +23,7 @@
inline bool itDoesThis(){ return true; }
inline bool itDoesThat(){ return true; }
SCENARIO( "Do that thing with the thing", "[tags]" ) {
SCENARIO( "Do that thing with the thing", "[Tags]" ) {
GIVEN( "This stuff exists" ) {
// make stuff exist
WHEN( "I do this" ) {
@ -35,6 +35,5 @@ SCENARIO( "Do that thing with the thing", "[tags]" ) {
REQUIRE( itDoesThat() );
}
}
}
}