I have a very simple capybara script for a custom sign-up form using devise:
scenario "allow me to register and should take me to the new partner page" do
visit '/registrations/become_partner'
response.should be_success
end
When I try to run the test, I get the following error:
ActionView::Template::Error:
undefined method `first_name' for #<User:0x00000004d259e8>
even though this method is defined. I have the attr_accesible set in my model, the page renders, and I can call this method from the rails console. Why is capybara throwing this error when it is not a problem elsewhere?
rake db:test:preparebefore running the specs? – Charles Feb 15 at 14:14