Sha256: 458efe21cd5cb72bd83073c54ac3d32029474b6b6f0b0ab5343c129f618222cb
Contents?: true
Size: 625 Bytes
Versions: 9
Compression:
Stored size: 625 Bytes
Contents
require 'spec_helper' describe Cocaine::CommandLine::PopenRunner do if Cocaine::CommandLine::PopenRunner.supported? it_behaves_like 'a command that does not block' it 'runs the command given' do subject.call("echo hello").should == "hello\n" end it 'modifies the environment and runs the command given' do subject.call("echo $yes", {"yes" => "no"}).should == "no\n" end it 'sets the exitstatus when a command completes' do subject.call("ruby -e 'exit 0'") $?.exitstatus.should == 0 subject.call("ruby -e 'exit 5'") $?.exitstatus.should == 5 end end end
Version data entries
9 entries across 9 versions & 2 rubygems