Skip to content

Commit

Permalink
add spec Warning[category] = true|false to emit/suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lxxxvi committed Oct 24, 2020
1 parent 846f3e3 commit e38230c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions core/warning/element_reference_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require_relative '../../spec_helper'

ruby_version_is '2.7.2' do
describe "Warning.[]" do
it "returns default values for categories :deprecated and :experimental" do
ruby_exe('p Warning[:deprecated]').chomp.should == "false"
ruby_exe('p Warning[:experimental]').chomp.should == "true"
end

it "raises for unknown category" do
-> { Warning[:noop] }.should raise_error(ArgumentError, /unknown category: noop/)
end
end
end
19 changes: 19 additions & 0 deletions core/warning/element_set_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require_relative '../../spec_helper'

ruby_version_is '2.7' do
describe "Warning.[]=" do
it "emits and suppresses warnings for :deprecated" do
ruby_exe('Warning[:deprecated] = true; $; = ""', args: "2>&1").should =~ /is deprecated/
ruby_exe('Warning[:deprecated] = false; $; = ""', args: "2>&1").should == ""
end

it "emits and suppresses warnings for :experimental" do
ruby_exe('Warning[:experimental] = true; eval("0 in a")', args: "2>&1").should =~ /is experimental/
ruby_exe('Warning[:experimental] = false; eval("0 in a")', args: "2>&1").should == ""
end

it "raises for unknown category" do
-> { Warning[:noop] = false }.should raise_error(ArgumentError, /unknown category: noop/)
end
end
end

0 comments on commit e38230c

Please sign in to comment.