summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/set_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/set_spec.rb')
-rw-r--r--spec/ruby/library/set/set_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/ruby/library/set/set_spec.rb b/spec/ruby/library/set/set_spec.rb
deleted file mode 100644
index 2a4edc6dfc..0000000000
--- a/spec/ruby/library/set/set_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require_relative '../../spec_helper'
-
-describe 'Set' do
- ruby_version_is '3.2' do
- it 'is available without explicit requiring' do
- output = ruby_exe(<<~RUBY, options: '--disable-gems', args: '2>&1')
- puts Set.new([1, 2, 3])
- RUBY
- output.chomp.should == "#<Set: {1, 2, 3}>"
- end
- end
-end