Trying to do a simple controller test with RSpec 1.1.4 on Rails 2.1.0 --

   it "should render index template" do
     do_get
     response.should render_template('index')
   end

:: results in a

1)
NoMethodError in 'GroupsController handling GET /groups should render
index template'
undefined method `rendered_file' for #<ActionController::TestResponse:0x1eb8f60>

Meanwhile, NetBeans shows a deprecation warning with `render_template`, but
changing it to the recommended form:
     response.should render :template => 'index'

:: results in

1)
NoMethodError in 'GroupsController handling GET /groups should render
index template'
undefined method `render' for
#<Spec::Rails::Example::ControllerExampleGroup::Subclass_1::Subclass_1:0x1701ab0>

Anyone seen this before, and/or have any suggestions?

TIA!

H*
-- 
Hassan Schroeder ------------------------ [EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to