Sha256: f1a7edf1272b918b267554c364702212f560320204e5ddc4d5693ba1ffafd60d

Contents?: true

Size: 388 Bytes

Versions: 3

Compression:

Stored size: 388 Bytes

Contents

Then /^the result should be "([^"]*)"$/ do |string|
  @result.should == string
end

Then /^the result should be (\d+)$/ do |int|
  @result.should == int.to_i
end

Then /^the result should be (\d+\.\d+)$/ do |float|
  @result.should == float.to_f
end

Then /^the result should be true$/ do
  @result.should == true
end

Then /^the result should be false$/ do
  @result.should == false
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dozuki-0.2.0 features/steps/format_steps.rb
dozuki-0.1.0 features/steps/format_steps.rb
dozuki-0.0.3 features/steps/format_steps.rb