Sha256: 29697f231362c8fe76057d766dfedb38af2eb2aad0504a56644cf8b6238f6265
Contents?: true
Size: 639 Bytes
Versions: 65
Compression:
Stored size: 639 Bytes
Contents
Given /^I am at the project root$/ do Dir.pwd.split('/').last.should == "flapjack" end Then /^I should see (\d+) lines of output$/ do |number| @output.split.size.should == number.to_i end Then /^every file in the output should start with "([^\"]*)"$/ do |string| @output.split.each do |file| `head -n 1 #{file}`.should =~ /^#{string}\s*$/ end end When /^I run "([^"]*)"$/ do |cmd| #bin_path = '/usr/bin' #command = "#{bin_path}/#{cmd}" #@output = `#{command}` @output = `#{cmd} 2>&1` @exit_status = $?.exitstatus end Then /^the exit status should be (\d+)$/ do |number| @exit_status.should == number.to_i end
Version data entries
65 entries across 65 versions & 1 rubygems