Sha256: ebc764d5a74864c4f9fc7de571a377d7da9c3d987c35f9bfd61d562182062e0c

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

Given /^the "([^"]*)" fixture$/ do |fixture_path|
  Dir.chdir(File.join(File.expand_path(File.dirname(__FILE__)), "../../spec/fixtures", fixture_path))
end

When /^I run soundcheck with "([^"]*)"$/ do |spec_file|
  puts output = `#{File.join(File.expand_path(File.dirname(__FILE__)), "../../bin/soundcheck")} #{spec_file}`
end

Then /^it should have passed$/ do
  $?.exitstatus.should == 0
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soundcheck-0.0.1 features/step_definitions/steps.rb