Skip to content

Commit

Permalink
fix conflicts in merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rplevy-draker committed Mar 20, 2012
2 parents 9de70ac + 0b0b02c commit a8c0de3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions History.md
@@ -1,6 +1,7 @@
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC21...master) ## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC21...master)


* [Core] Fix broken --tags option (and get rid of JCommander for CLI parsing). ([#266](https://github.com/cucumber/cucumber-jvm/issues/266) Aslak Hellesøy) * [Core] Fix broken --tags option (and get rid of JCommander for CLI parsing). ([#266](https://github.com/cucumber/cucumber-jvm/issues/266) Aslak Hellesøy)
* [Clojure] Make Clojure DSL syntax cleaner ([#244](https://github.com/cucumber/cucumber-jvm/issues/244) [#267](https://github.com/cucumber/cucumber-jvm/pull/267) rplevy-draker)
* [Clojure] Native Clojure backend ([#138](https://github.com/cucumber/cucumber-jvm/pull/138) [#265](https://github.com/cucumber/cucumber-jvm/pull/265) Kevin Downey, Nils Wloka) * [Clojure] Native Clojure backend ([#138](https://github.com/cucumber/cucumber-jvm/pull/138) [#265](https://github.com/cucumber/cucumber-jvm/pull/265) Kevin Downey, Nils Wloka)
* [JUnit] Added `format` attribute to `@Cucumber.Options` (Aslak Hellesøy) * [JUnit] Added `format` attribute to `@Cucumber.Options` (Aslak Hellesøy)


Expand Down
Expand Up @@ -16,6 +16,7 @@ public void generatesPlainSnippet() {
String snippet = new SnippetGenerator(new ClojureSnippet()).getSnippet(step); String snippet = new SnippetGenerator(new ClojureSnippet()).getSnippet(step);
String expected = "" + String expected = "" +
"(Given #\"^I have (\\d+) cukes in my \"([^\"]*)\" belly$\" [arg1, arg2]\n" + "(Given #\"^I have (\\d+) cukes in my \"([^\"]*)\" belly$\" [arg1, arg2]\n" +
<<<<<<< HEAD
" (comment Express the Regexp above with the code you wish you had ))\n"; " (comment Express the Regexp above with the code you wish you had ))\n";
assertEquals(expected, snippet); assertEquals(expected, snippet);
} }
Expand Down

0 comments on commit a8c0de3

Please sign in to comment.