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