Fix navigation and highlighting.
[kaya.git] / lib / helpers / stubs.rb
blob2c3472fc1235fdd93bf1457c193dedcd819fba85
1 class GeneralMock
2   attr_reader :calls
3   
4   def initialize
5     @calls = []
6   end
7   
8   def method_missing(method, *args)
9     @calls << [method, args]
10   end
11 end