-
-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7ed847
commit df9ea91
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
require_relative '../../spec_helper' | ||
|
||
ruby_version_is "3.1" do | ||
# See https://bugs.ruby-lang.org/issues/18008 | ||
describe "StructClass#keyword_init?" do | ||
it "returns true for a struct that accepts keyword arguments to initialize" do | ||
struct = Struct.new(:arg, keyword_init: true) | ||
struct.keyword_init?.should be_true | ||
end | ||
|
||
it "returns false for a struct that does not accept keyword arguments to initialize" do | ||
struct = Struct.new(:arg, keyword_init: false) | ||
struct.keyword_init?.should be_false | ||
end | ||
|
||
it "returns nil for a struct that did not explicitly specify keyword_init" do | ||
struct = Struct.new(:arg) | ||
struct.keyword_init?.should be_nil | ||
end | ||
end | ||
end |