example/step_definitions/example.step.rb in cucumber-in-the-yard-1.7.1 vs example/step_definitions/example.step.rb in cucumber-in-the-yard-1.7.2
- old
+ new
@@ -79,9 +79,23 @@
Then /I expect the (duck|bird) to (\w+)/ do |animal,verb|
pending
end
+#
+# This double-quoted step definition caused some problems when being rendered
+#
+When /^searching the log for the exact match of the message "([^"]+)"$/ do |message|
+ pending message
+end
+
+#
+#
+#
+When /^the step definition has HTML escaped characters like: "([^"]+)"$/ do |characters|
+ pending characters
+end
+
#
# Some details about the helper method that might be picked up in the documentation.
#
def a_helper_method
\ No newline at end of file