Sha256: 186e49c77c89182d72ff0cdf059ad1b5946d2f184b3e991e508174b9fb126858

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

require 'forwardable'

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?, :many?, :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

    # Returns true if relation is blank.
    def blank?
      to_a.blank?
    end

    protected

    attr_accessor :collection

  end

end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_mocker-1.6.1 lib/active_mocker/mock/collection.rb
active_mocker-1.6 lib/active_mocker/mock/collection.rb