# File lib/cucumber/wire_support/wire_protocol.rb, line 32 32: def begin_scenario(scenario) 33: handler = Requests::BeginScenario.new(self) 34: handler.execute(scenario) 35: end
# File lib/cucumber/wire_support/wire_protocol.rb, line 22 22: def diff_failed 23: handler = Requests::DiffFailed.new(self) 24: handler.execute 25: end
# File lib/cucumber/wire_support/wire_protocol.rb, line 27 27: def diff_ok 28: handler = Requests::DiffOk.new(self) 29: handler.execute 30: end
# File lib/cucumber/wire_support/wire_protocol.rb, line 37 37: def end_scenario(scenario) 38: handler = Requests::EndScenario.new(self) 39: handler.execute(scenario) 40: end
# File lib/cucumber/wire_support/wire_protocol.rb, line 17 17: def invoke(step_definition_id, args) 18: handler = Requests::Invoke.new(self) 19: handler.execute(step_definition_id, args) 20: end
# File lib/cucumber/wire_support/wire_protocol.rb, line 12 12: def snippet_text(step_keyword, step_name, multiline_arg_class_name) 13: handler = Requests::SnippetText.new(self) 14: handler.execute(step_keyword, step_name, multiline_arg_class_name) 15: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.