summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2023-03-23 13:44:04 -0700
committerJeremy Evans <code@jeremyevans.net>2023-04-24 07:37:20 -0700
commitf8e7048348d022814736d0a7e49f2f2494db6a2f (patch)
treeeecca5b3e7fa827a81d71fe9cdfc6adc41b9afc9 /spec
parent73fc81199de5e567e38f7ea9067260eb6866cbf9 (diff)
Allow anonymous memberless Struct
Previously, named memberless Structs were allowed, but anonymous memberless Structs were not. Fixes [Bug #19416]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7587
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/struct/new_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/ruby/core/struct/new_spec.rb b/spec/ruby/core/struct/new_spec.rb
index 7b4a4f7980..4aeaa066e1 100644
--- a/spec/ruby/core/struct/new_spec.rb
+++ b/spec/ruby/core/struct/new_spec.rb
@@ -78,6 +78,20 @@ describe "Struct.new" do
end
end
+ ruby_version_is ""..."3.3" do
+ it "raises ArgumentError if not provided any arguments" do
+ -> { Struct.new }.should raise_error(ArgumentError)
+ end
+ end
+
+ ruby_version_is "3.3" do
+ it "works when not provided any arguments" do
+ c = Struct.new
+ c.should be_kind_of(Class)
+ c.superclass.should == Struct
+ end
+ end
+
it "raises ArgumentError when there is a duplicate member" do
-> { Struct.new(:foo, :foo) }.should raise_error(ArgumentError, "duplicate member: foo")
end