Class Index [+]

Quicksearch

Cucumber::WireSupport::WireProtocol

Public Instance Methods

begin_scenario(scenario) click to toggle source
    # 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
diff_failed() click to toggle source
    # 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
diff_ok() click to toggle source
    # 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
end_scenario(scenario) click to toggle source
    # 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
invoke(step_definition_id, args) click to toggle source
    # 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
snippet_text(step_keyword, step_name, multiline_arg_class_name) click to toggle source
    # 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
step_matches(name_to_match, name_to_report) click to toggle source
    # File lib/cucumber/wire_support/wire_protocol.rb, line 7
 7:       def step_matches(name_to_match, name_to_report)
 8:         handler = Requests::StepMatches.new(self)
 9:         handler.execute(name_to_match, name_to_report)
10:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.