Sha256: a184340bc096467b7e5999cba2ed51c565a90f2167dc37c12462944caf1ad80e

Contents?: true

Size: 316 Bytes

Versions: 1

Compression:

Stored size: 316 Bytes

Contents

Given /^I have input file\(s\) named "(.*?)"$/ do |arg1|
  @filenames = arg1.split(/,/)
end

When /^I execute "(.*?)"$/ do |arg1|
  @cmd = arg1 + ' < ' + @filenames[0]
end

Then(/^I expect the named output to match the named output "(.*?)"$/) do |arg1|
  RegressionTest::CliExec::exec(@cmd,arg1).should be_true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bio-vcf-0.0.3 features/step_definitions/cli-feature.rb