1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/language/fixtures/block.rb
eregon 95e8c48dd3 Add in-tree mspec and ruby/spec
* For easier modifications of ruby/spec by MRI developers.
* .gitignore: track changes under spec.
* spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec.
  These files can therefore be updated like any other file in MRI.
  Instructions are provided in spec/README.
  [Feature #13156] [ruby-core:79246]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:04:49 +00:00

57 lines
834 B
Ruby

module BlockSpecs
class Yielder
def z
yield
end
def m(*a)
yield(*a)
end
def s(a)
yield(a)
end
def r(a)
yield(*a)
end
end
# TODO: rewrite all specs that use Yield to use Yielder
class Yield
def splat(*args)
yield(*args)
end
def two_args
yield 1, 2
end
def two_arg_array
yield [1, 2]
end
def yield_splat_inside_block
[1, 2].send(:each_with_index) {|*args| yield(*args)}
end
def yield_this(obj)
yield obj
end
end
class OverwriteBlockVariable
def initialize
@y = Yielder.new
end
def method_missing(method, *args, &block)
self.class.send :define_method, method do |*a, &b|
@y.send method, *a, &b
end
send method, *args, &block
end
end
end