Sha256: 1e9551346951f6368ec9c24ad12c96b6257b1e98fc4e02d4c25c0639289bf18b

Contents?: true

Size: 356 Bytes

Versions: 9

Compression:

Stored size: 356 Bytes

Contents

When /^I get help for "([^"]*)"$/ do |app_name|
  @app_name = app_name
  step %(I run `#{app_name} help`)
end

Given(/^no file located at "(.*?)"$/) do |filepath|
  step %(the file "#{ filepath }" should not exist)
end

Given(/^a file located at "(.*?)" with the contents:$/) do |filepath, contents|
  File.open(filepath, 'w') { |f| f.write(contents) }
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pinpress-1.2.2 features/step_definitions/pinpress_steps.rb
pinpress-1.2.1 features/step_definitions/pinpress_steps.rb
pinpress-1.2.0 features/step_definitions/pinpress_steps.rb
pinpress-1.1.2 features/step_definitions/pinpress_steps.rb
pinpress-1.1.1 features/step_definitions/pinpress_steps.rb
pinpress-1.1.0 features/step_definitions/PinPress_steps.rb
pinpress-1.0.2 features/step_definitions/PinPress_steps.rb
pinpress-1.0.1 features/step_definitions/PinPress_steps.rb
pinpress-1.0.0 features/step_definitions/PinPress_steps.rb