Sha256: 9d5e1f7a17550c40780cd8f451d2a594e1f6e9ebcad4befec37db09193cf23ef
Contents?: true
Size: 491 Bytes
Versions: 52
Compression:
Stored size: 491 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "SystemExit#initialize" do it "accepts a status" do s = SystemExit.new 1 s.status.should == 1 s.message.should == 'SystemExit' end it "accepts a message" do s = SystemExit.new 'message' s.status.should == 0 s.message.should == 'message' end it "accepts a status and message" do s = SystemExit.new 10, 'message' s.status.should == 10 s.message.should == 'message' end end
Version data entries
52 entries across 52 versions & 2 rubygems