summaryrefslogtreecommitdiff
path: root/spec/ruby/core/fixnum/fixnum_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/fixnum/fixnum_spec.rb')
-rw-r--r--spec/ruby/core/fixnum/fixnum_spec.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/spec/ruby/core/fixnum/fixnum_spec.rb b/spec/ruby/core/fixnum/fixnum_spec.rb
deleted file mode 100644
index 7f72f95e94..0000000000
--- a/spec/ruby/core/fixnum/fixnum_spec.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Fixnum" do
- it "includes Comparable" do
- Fixnum.include?(Comparable).should == true
- end
-
- it ".allocate raises a TypeError" do
- lambda do
- Fixnum.allocate
- end.should raise_error(TypeError)
- end
-
- it ".new is undefined" do
- lambda do
- Fixnum.new
- end.should raise_error(NoMethodError)
- end
-
- ruby_version_is '2.4' do
- it "is unified into Integer" do
- Fixnum.should equal(Integer)
- end
-
- it "is deprecated" do
- -> {
- Fixnum
- }.should complain(/constant ::Fixnum is deprecated/)
- end
- end
-end