Displaying 1 result from an estimated 1 matches for "helper_stub".
2006 Nov 16
2
Stubbing helpers
...out a helper for development?
I''ve got a (view) helper that renders a partial and runs all kind of
javascript. But for dev purposes I''d like it to return some hardcoded
html. I''m not having any success stubbing the helper out. Something
like...
test/mocks/development/helper_stub.rb
require ''application_helper''
class ApplicationController < ActionController::Base
def my_helper
"<div>Hard-coded stuff</div>"
end
end
Can this be done? Thanks,
--Trevor
--~--~---------~--~----~------------~-------~--~----~
You received thi...