Sha256: d533ddcf59ba5cfa5fd67e4c690d45b9ff7e5fbed36850fdff413cee4faad744
Contents?: true
Size: 925 Bytes
Versions: 2
Compression:
Stored size: 925 Bytes
Contents
module ActiveMocker module Mock class Collection include Enumerable def initialize(collection=[]) @collection = [*collection] end def <<(*records) collection.concat(records.flatten) end extend Forwardable def_delegators :@collection, :take, :push, :clear, :first, :last, :concat, :replace, :distinct, :uniq, :count, :size, :length, :empty?, :any?, :include?, :delete alias distinct uniq def select(&block) collection.select(&block) end def each(&block) collection.each do |item| block.call(item) end end def map(&block) collection.map do |item| block.call(item) end end def to_a @collection end def to_ary to_a end def hash @collection.hash end def ==(val) @collection == val end protected attr_accessor :collection end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_mocker-1.5.1 | lib/active_mocker/mock/collection.rb |
active_mocker-1.5 | lib/active_mocker/mock/collection.rb |