Sha256: 7311352462a76761f9f4d64ae843b1a07e4fa62530f7d5241f38ddf469cc11cd
Contents?: true
Size: 461 Bytes
Versions: 5
Compression:
Stored size: 461 Bytes
Contents
# Put your step definitions here Then(/^the banner should document that this app's arguments are$/) do |table| expected_arguments = table.raw.map { |row| option = row[0] option = "[#{option}]" if row[1] == 'optional' || row[1] == 'which is optional' option }.join(' ') step %(the output should contain "#{expected_arguments}") end Given(/^an assembly file at "(.*?)"$/) do |assembly_path| steps %(Given a file named "#{assembly_path}") end
Version data entries
5 entries across 5 versions & 1 rubygems