wycats / merb

master merb branch

This URL has Read+Write access

merb / 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