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, 12 insertions, 0 deletions
diff --git a/spec/ruby/library/set/set_spec.rb b/spec/ruby/library/set/set_spec.rb
new file mode 100644
index 0000000000..2a4edc6dfc
--- /dev/null
+++ b/spec/ruby/library/set/set_spec.rb
@@ -0,0 +1,12 @@
+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