public
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
merb-core / spec / public / test / controllers / dispatch_controller.rb
100644 11 lines (8 sloc) 0.212 kb
1
2
3
4
5
6
7
8
9
10
11
class Merb::Test::DispatchController < Merb::Controller
  
  def index
    Merb::Test::ControllerAssertionMock.called(:index)
  end
  
  def show
    Merb::Test::ControllerAssertionMock.called(:show)
  end
  
end