aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/warning/warn_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/warning/warn_spec.rb')
-rw-r--r--spec/ruby/core/warning/warn_spec.rb18
1 files changed, 8 insertions, 10 deletions
diff --git a/spec/ruby/core/warning/warn_spec.rb b/spec/ruby/core/warning/warn_spec.rb
index 7daf6323c3..21424c6c76 100644
--- a/spec/ruby/core/warning/warn_spec.rb
+++ b/spec/ruby/core/warning/warn_spec.rb
@@ -51,16 +51,14 @@ describe "Warning.warn" do
end
end
- ruby_version_is "2.5" do
- it "is called by Kernel.warn" do
- Warning.should_receive(:warn).with("Chunky bacon!\n")
- verbose = $VERBOSE
- $VERBOSE = false
- begin
- Kernel.warn("Chunky bacon!")
- ensure
- $VERBOSE = verbose
- end
+ it "is called by Kernel.warn" do
+ Warning.should_receive(:warn).with("Chunky bacon!\n")
+ verbose = $VERBOSE
+ $VERBOSE = false
+ begin
+ Kernel.warn("Chunky bacon!")
+ ensure
+ $VERBOSE = verbose
end
end
end