summaryrefslogtreecommitdiff
path: root/spec/ruby/fixtures
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-07 16:40:27 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-07 16:40:27 +0000
commit713279550ad33836e5d7bbbb5b801aa13def24dc (patch)
tree5117074ae9fefc45750ba41bdf121599dbf9a0ca /spec/ruby/fixtures
parent75334db3c6479ea3cd7462d36ca5464d386f9c72 (diff)
Fix specs for yield in singleton class being deprecated
* Use eval to trigger warning only when the method is called. * Suppress warnings and clarify this will be removed in 3.0. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/fixtures')
-rw-r--r--spec/ruby/fixtures/class.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/ruby/fixtures/class.rb b/spec/ruby/fixtures/class.rb
index 9609eb6f3c..d2ae14ecb7 100644
--- a/spec/ruby/fixtures/class.rb
+++ b/spec/ruby/fixtures/class.rb
@@ -1,9 +1,11 @@
module ClassSpecs
def self.sclass_with_block
+ eval <<-RUBY
class << self
yield
end
+ RUBY
end
def self.sclass_with_return