mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
15 lines
189 B
Ruby
15 lines
189 B
Ruby
class MockController
|
|
attr_accessor :action_name
|
|
|
|
def _routes
|
|
self
|
|
end
|
|
|
|
def action_name
|
|
@action_name || "edit"
|
|
end
|
|
|
|
def url_for(*args)
|
|
"http://example.com"
|
|
end
|
|
end
|