diff options
Diffstat (limited to 'spec/ruby/core/integer/constants_spec.rb')
| -rw-r--r-- | spec/ruby/core/integer/constants_spec.rb | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/spec/ruby/core/integer/constants_spec.rb b/spec/ruby/core/integer/constants_spec.rb index 3b8b01e330..937806c72f 100644 --- a/spec/ruby/core/integer/constants_spec.rb +++ b/spec/ruby/core/integer/constants_spec.rb @@ -1,25 +1,13 @@ require_relative '../../spec_helper' describe "Fixnum" do - it "is unified into Integer" do - suppress_warning do - Fixnum.should equal(Integer) - end - end - - it "is deprecated" do - -> { Fixnum }.should complain(/constant ::Fixnum is deprecated/) + it "is no longer defined" do + Object.should_not.const_defined?(:Fixnum) end end describe "Bignum" do - it "is unified into Integer" do - suppress_warning do - Bignum.should equal(Integer) - end - end - - it "is deprecated" do - -> { Bignum }.should complain(/constant ::Bignum is deprecated/) + it "is no longer defined" do + Object.should_not.const_defined?(:Bignum) end end |
