Sha256: 0e56d010ac4178243b747b8c1b299e28270736a651711ec4a50bc3e94764157d
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 KB
Contents
# encoding: utf-8 # 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
7 entries across 7 versions & 1 rubygems