mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@032ee74
This commit is contained in:
parent
f646d20aae
commit
5aaa75e7c1
263 changed files with 921 additions and 921 deletions
|
|
@ -40,16 +40,16 @@ describe "Kernel#`" do
|
|||
ip = 'world'
|
||||
`echo disc #{ip}`
|
||||
$?.should be_kind_of(Process::Status)
|
||||
$?.stopped?.should == false
|
||||
$?.exited?.should == true
|
||||
$?.should_not.stopped?
|
||||
$?.should.exited?
|
||||
$?.exitstatus.should == 0
|
||||
$?.success?.should == true
|
||||
$?.should.success?
|
||||
`echo disc #{ip}; exit 99`
|
||||
$?.should be_kind_of(Process::Status)
|
||||
$?.stopped?.should == false
|
||||
$?.exited?.should == true
|
||||
$?.should_not.stopped?
|
||||
$?.should.exited?
|
||||
$?.exitstatus.should == 99
|
||||
$?.success?.should == false
|
||||
$?.should_not.success?
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -58,16 +58,16 @@ describe "Kernel#`" do
|
|||
ip = 'world'
|
||||
`echo disc #{ip}`
|
||||
$?.should be_kind_of(Process::Status)
|
||||
$?.stopped?.should == false
|
||||
$?.exited?.should == true
|
||||
$?.should_not.stopped?
|
||||
$?.should.exited?
|
||||
$?.exitstatus.should == 0
|
||||
$?.success?.should == true
|
||||
$?.should.success?
|
||||
`echo disc #{ip}& exit 99`
|
||||
$?.should be_kind_of(Process::Status)
|
||||
$?.stopped?.should == false
|
||||
$?.exited?.should == true
|
||||
$?.should_not.stopped?
|
||||
$?.should.exited?
|
||||
$?.exitstatus.should == 99
|
||||
$?.success?.should == false
|
||||
$?.should_not.success?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue