Sha256: ccb67a687f069bb9fd4e90cd2e2e6ed4abe55cda3a01ff0e7048ca8347c7d7d6

Contents?: true

Size: 1023 Bytes

Versions: 5

Compression:

Stored size: 1023 Bytes

Contents

# File: demo_steps.rb
# A few step definitions for demo and testing purpose.

When(/^I landed in the homepage$/) do
  trace_steps << 'Invoked step: ... I landed in the homepage'
end

When(/^I click "([^"]*)"$/) do |element|
  trace_steps << "Invoked step: ... I click \"#{element}\""
end


When(/^I fill in "(.*?)" with "(.*?)"$/) do |element, text|
  trace_steps << "Invoked step: ... I fill in \"#{element}\" with \"#{text}\""
end


Then(/^I expect the following step trace:$/) do |step_text|
  trace_steps.should == step_text.split(/\r?\n|\n/)
end


# This step is used for testing a particular exception
When(/^I generate a DataTableNotFound exception$/) do
  wrong = <<-SNIPPET
  When I [fill in the form with]:
  """
    Should be a table instead of triple quote string
  """
SNIPPET
  begin
    steps(wrong)
  rescue Macros4Cuke::DataTableNotFound => exc
    phrase = '[fill in the form with]:'
    msg = "The step with phrase #{phrase} requires a data table."
    exc.message.should == msg
  end
end


# End of file

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
macros4cuke-0.3.39 features/step_definitions/demo_steps.rb
macros4cuke-0.3.38 features/step_definitions/demo_steps.rb
macros4cuke-0.3.37 features/step_definitions/demo_steps.rb
macros4cuke-0.3.35 features/step_definitions/demo_steps.rb
macros4cuke-0.3.34 features/step_definitions/demo_steps.rb