Sha256: 9a294ac08a9e61440ade69bfd6e5976d02c6bd1f7e4a5be980c2fc1a6f921b4e

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

require 'cucumber/step_argument'
require 'cucumber/wire_support/wire_protocol/requests'

module Cucumber
  module WireSupport
    module WireProtocol
      def step_matches(name_to_match, name_to_report)
        handler = Requests::StepMatches.new(self)
        handler.execute(name_to_match, name_to_report)
      end

      def snippet_text(step_keyword, step_name, multiline_arg_class_name)
        handler = Requests::SnippetText.new(self)
        handler.execute(step_keyword, step_name, multiline_arg_class_name)
      end
      
      def invoke(step_definition_id, args)
        handler = Requests::Invoke.new(self)
        handler.execute(step_definition_id, args)
      end
      
      def diff_failed
        handler = Requests::DiffFailed.new(self)
        handler.execute
      end
      
      def diff_ok
        handler = Requests::DiffOk.new(self)
        handler.execute
      end
      
      def begin_scenario(scenario)
        handler = Requests::BeginScenario.new(self)
        handler.execute(scenario)
      end

      def end_scenario
        handler = Requests::EndScenario.new(self)
        handler.execute
      end
      
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
davidtrogers-cucumber-0.6.2 lib/cucumber/wire_support/wire_protocol.rb
cucumber-0.6.2 lib/cucumber/wire_support/wire_protocol.rb
cucumber-0.6.1 lib/cucumber/wire_support/wire_protocol.rb
cucumber-0.6.0 lib/cucumber/wire_support/wire_protocol.rb
cucumber-0.5.3 lib/cucumber/wire_support/wire_protocol.rb
cucumber-0.5.2 lib/cucumber/wire_support/wire_protocol.rb