Sha256: 3895f5718a09d138086a1746dd359e0d261caa9cd0421b0ab00753a6740c8a36
Contents?: true
Size: 347 Bytes
Versions: 61
Compression:
Stored size: 347 Bytes
Contents
module Mocha class ArgumentIterator def initialize(argument) @argument = argument end def each(&block) if @argument.is_a?(Hash) then @argument.each do |method_name, return_value| block.call(method_name, return_value) end else block.call(@argument) end end end end
Version data entries
61 entries across 50 versions & 5 rubygems