Skip to content

Instantly share code, notes, and snippets.

@jarib
Created February 25, 2009 10:57
Show Gist options
  • Save jarib/70128 to your computer and use it in GitHub Desktop.
Save jarib/70128 to your computer and use it in GitHub Desktop.
parser bug
diff --git a/spec/cucumber/parser/feature_parser_spec.rb b/spec/cucumber/parser/feature_parser_spec.rb
index 7147308..a48516b 100644
--- a/spec/cucumber/parser/feature_parser_spec.rb
+++ b/spec/cucumber/parser/feature_parser_spec.rb
@@ -94,7 +94,7 @@ Feature: hi
Given Pepper
@st3
- @st4
+ @st4 @ST5
Scenario: Second}).to_sexp.should ==
[:feature, "Feature: hi",
[:comment, "# FC\n "],
@@ -103,7 +103,7 @@ Feature: hi
[:tag, "st1"], [:tag, "st2"],
[:step, 7, "Given", "Pepper"]],
[:scenario, 11, 'Scenario:', 'Second',
- [:tag, "st3"], [:tag, "st4"]]]
+ [:tag, "st3"], [:tag, "st4"], [:tag, "ST5"]]]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment