Class: CouchPotato::RSpec::ReduceToProxy

Inherits:
Object
  • Object
show all
Defined in:
lib/couch_potato/rspec/matchers/reduce_to_matcher.rb

Instance Method Summary collapse

Constructor Details

#initialize(docs, keys, rereduce = false) ⇒ ReduceToProxy

Returns a new instance of ReduceToProxy.



4
5
6
# File 'lib/couch_potato/rspec/matchers/reduce_to_matcher.rb', line 4

def initialize(docs, keys, rereduce = false)
  @docs, @keys, @rereduce = docs, keys, rereduce
end

Instance Method Details

#to(expected_ruby) ⇒ Object



8
9
10
# File 'lib/couch_potato/rspec/matchers/reduce_to_matcher.rb', line 8

def to(expected_ruby)
  ReduceToMatcher.new(expected_ruby, @docs, @keys, @rereduce)
end