We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07df8a5 commit 31c36a4Copy full SHA for 31c36a4
spec/ruby/library/English/English_spec.rb
@@ -130,13 +130,15 @@
130
$LAST_MATCH_INFO.should == $~
131
end
132
133
- it "aliases $IGNORECASE to $=" do
134
- $VERBOSE, verbose = nil, $VERBOSE
135
- begin
136
- $IGNORECASE.should_not be_nil
137
- $IGNORECASE.should == $=
138
- ensure
139
- $VERBOSE = verbose
+ ruby_version_is ""..."3.3" do
+ it "aliases $IGNORECASE to $=" do
+ $VERBOSE, verbose = nil, $VERBOSE
+ begin
+ $IGNORECASE.should_not be_nil
+ $IGNORECASE.should == $=
+ ensure
140
+ $VERBOSE = verbose
141
+ end
142
143
144
0 commit comments