Displaying 2 results from an estimated 2 matches for "helper_dir".
Did you mean:
header_dir
2006 Jan 12
0
testing
...inside a unit
Test.
I can manually include each of the required Helpers in my
editor_helper_test file:
...
require ''action_view/helpers/url_helper''
module EditorHelper
include ActionView::Helpers::UrlHelper
end
...
But I''d much rather make use of
self.load_helpers(helper_dir)#:nodoc:
in ActionView::Base to load all the helpers in one swoop.
I couldnt figure out how to use that method (or even copy/past+modify
it) to include all of Rails'' Helpers within my EditorHelper. Who
knows how?
cheers
Gerret
2006 Jan 13
0
testing Helpers
...r inside a unit
Test.
I can manually include each of the required Helpers in my
editor_helper_test file:
...
require ''action_view/helpers/url_helper''
module EditorHelper
include ActionView::Helpers::UrlHelper
end
...
But I''d much rather make use of
self.load_helpers(helper_dir)#:nodoc:
in ActionView::Base to load all the helpers in one swoop.
I couldnt figure out how to use that method (or even copy/past+modify
it) to include all of Rails'' Helpers within my EditorHelper. Who
knows how?