summaryrefslogtreecommitdiff
path: root/spec/ruby/core/integer/constants_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/integer/constants_spec.rb')
-rw-r--r--spec/ruby/core/integer/constants_spec.rb28
1 files changed, 7 insertions, 21 deletions
diff --git a/spec/ruby/core/integer/constants_spec.rb b/spec/ruby/core/integer/constants_spec.rb
index cdb7537392..937806c72f 100644
--- a/spec/ruby/core/integer/constants_spec.rb
+++ b/spec/ruby/core/integer/constants_spec.rb
@@ -1,27 +1,13 @@
require_relative '../../spec_helper'
-ruby_version_is ""..."2.7" do
- 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/)
- end
+describe "Fixnum" do
+ 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/)
- end
+describe "Bignum" do
+ it "is no longer defined" do
+ Object.should_not.const_defined?(:Bignum)
end
end