
April 3rd, 2007, 02:44 PM
|
|
Contributing User
|
|
Join Date: Mar 2003
Posts: 174
Time spent in forums: 14 h 27 m 11 sec
Reputation Power: 11
|
|
|
undefined method `render' thrown in helper tet
Hello,
I'm trying to write a very simple test for a very simple method in a helper_test.
Here's the method I'm testing in my_helper.rb:
Code:
def subscribe_email_link
if @subscription_model_class
render(:partial => '/subscription/toggle')
end
end
And in my_helper_test.rb
I'm trying:
Code:
def test_subscribe_email_link
@subscription_model_class = true
link = subscribe_email_link
end
The link = subscribe_email_link section throws a "undefined method `render' " error
Is there a way I can add render functionality in this helper test?
Thanks for your time.
|