Method: CounterAdapter#method_missing

Defined in:
lib/dm-core/spec/lib/counter_adapter.rb

#method_missing(method, *args, &block) ⇒ Object (private)



34
35
36
37
# File 'lib/dm-core/spec/lib/counter_adapter.rb', line 34

def method_missing(method, *args, &block)
  increment_count_for(method)
  @adapter.send(method, *args, &block)
end