aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/systemexit/success_spec.rb
blob: 038a0e7e4d686c928335b43df86c84ca4310d833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../spec_helper', __FILE__)

describe "SystemExit#success?" do
  it "returns true when the status is 0" do
    s = SystemExit.new 0
    s.success?.should == true
  end

  it "returns false when the status is not 0" do
    s = SystemExit.new 1
    s.success?.should == false
  end
end