diff options
author | eregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-06-27 11:37:31 +0000 |
---|---|---|
committer | eregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-06-27 11:37:31 +0000 |
commit | fc1f3f14d386b557281ff9a8f19da060befe182e (patch) | |
tree | 3ba2c06f27bee1ac3de0fa21bce25ac4035bbc4b /spec/ruby/language | |
parent | 80fdfbf8099d8e802b9faaef2eda1ffdb787d1ce (diff) |
Update to ruby/spec@41068a6
* Only small fixes to specs from CRuby to review the diff more easily.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/language')
-rw-r--r-- | spec/ruby/language/constants_spec.rb | 4 | ||||
-rw-r--r-- | spec/ruby/language/precedence_spec.rb | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/spec/ruby/language/constants_spec.rb b/spec/ruby/language/constants_spec.rb index 98077171ec..4b674a35f5 100644 --- a/spec/ruby/language/constants_spec.rb +++ b/spec/ruby/language/constants_spec.rb @@ -643,7 +643,9 @@ describe "Module#private_constant marked constants" do lambda do ConstantVisibility::PrivConstModuleChild::PRIVATE_CONSTANT_MODULE end.should raise_error(NameError) {|e| - e.receiver.should == ConstantVisibility::PrivConstModule + ruby_bug "#14853", ""..."2.5.2" do + e.receiver.should == ConstantVisibility::PrivConstModule + end e.name.should == :PRIVATE_CONSTANT_MODULE } end diff --git a/spec/ruby/language/precedence_spec.rb b/spec/ruby/language/precedence_spec.rb index 19edaf2efa..5966a4c2a4 100644 --- a/spec/ruby/language/precedence_spec.rb +++ b/spec/ruby/language/precedence_spec.rb @@ -301,13 +301,9 @@ describe "Operators" do from = 1 to = 2 # These are Range instances, not flip-flop - @verbose = $VERBOSE - $VERBOSE = nil - begin + suppress_warning do (eval("from..to") ? 3 : 4).should == 3 (eval("from...to") ? 3 : 4).should == 3 - ensure - $VERBOSE = @verbose end end |