Sha256: 9d72145ac86bc9a68f60e36495145d9cf47638a84a4b3fcdf855e6a4047a1a2f

Contents?: true

Size: 289 Bytes

Versions: 3

Compression:

Stored size: 289 Bytes

Contents

Then /^the results should contain "([^"]*)"$/ do |string|
  @results.should include(string)
end

Then /^the results should contain (\d+)$/ do |int|
  @results.should include(int.to_i)
end

Then /^the results should contain (\d+\.\d+)$/ do |float|
  @results.should include(float.to_f)
end

Version data entries

3 entries across 3 versions & 1 rubygems

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