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

12 lines
159 B
Ruby
Raw Normal View History

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