aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-28 11:58:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-12-28 18:35:03 +0900
commit40e7aefebad412bde50fa9bdadcc8405f7605355 (patch)
tree33a440e64dfe2d20e01bb30da6a89e8ab1f0318c /spec/ruby/core
parentb948b1a4e1f8a4a697bbc76873d728afcdc1694a (diff)
downloadruby-40e7aefebad412bde50fa9bdadcc8405f7605355.tar.gz
Remove obsolete Fixnum and Bignum
Diffstat (limited to 'spec/ruby/core')
-rw-r--r--spec/ruby/core/integer/constants_spec.rb32
1 files changed, 17 insertions, 15 deletions
diff --git a/spec/ruby/core/integer/constants_spec.rb b/spec/ruby/core/integer/constants_spec.rb
index 3b8b01e330..2aaa659d5a 100644
--- a/spec/ruby/core/integer/constants_spec.rb
+++ b/spec/ruby/core/integer/constants_spec.rb
@@ -1,25 +1,27 @@
require_relative '../../spec_helper'
-describe "Fixnum" do
- it "is unified into Integer" do
- suppress_warning do
- Fixnum.should equal(Integer)
+ruby_version_is ""..."3.1" do
+ describe "Fixnum" do
+ it "is unified into Integer" do
+ suppress_warning do
+ Fixnum.should equal(Integer)
+ end
end
- end
- it "is deprecated" do
- -> { Fixnum }.should complain(/constant ::Fixnum is deprecated/)
+ it "is deprecated" do
+ -> { Fixnum }.should complain(/constant ::Fixnum is deprecated/)
+ end
end
-end
-describe "Bignum" do
- it "is unified into Integer" do
- suppress_warning do
- Bignum.should equal(Integer)
+ describe "Bignum" do
+ it "is unified into Integer" do
+ suppress_warning do
+ Bignum.should equal(Integer)
+ end
end
- end
- it "is deprecated" do
- -> { Bignum }.should complain(/constant ::Bignum is deprecated/)
+ it "is deprecated" do
+ -> { Bignum }.should complain(/constant ::Bignum is deprecated/)
+ end
end
end