heartcombo--simple_form/test/support/mock_controller.rb

16 lines
189 B
Ruby
Raw Normal View History

2009-12-08 13:48:31 +00:00
class MockController
attr_accessor :action_name
def _routes
2010-04-22 12:33:23 +00:00
self
end
def action_name
@action_name || "edit"
end
2009-12-08 13:48:31 +00:00
def url_for(*args)
"http://example.com"
end
end