Hello,
I am trying to run this integration test of my user controller within
a rails 3 application:
# spec/requests/users_spec.rb
require 'spec_helper'
describe "Users" do
describe "success" do
it "should make a new user" do
lambda do
visit signup_path
fill_in "Name", :with => "Example User"
fill_in "Email", :with => "[email protected]"
fill_in "Password", :with => "foobar"
fill_in "Confirmation", :with => "foobar"
click_button "Sign up"
page.should have_css("div.flash.success", :text =>
"Welcome")
response.should render_template("user/show")
end.should change(User, :count).by(1)
end
end
end
The test fails when render_template is being called:
dan...@ubuntu /home/daniel/programming/bowling (signing-up) $ rspec
spec/requests/users_spec.rb -e "should make a new user"
Run filtered using {:full_description=>/(?-mix:should make a new
user)/}
F
Failures:
1) Users signup success should make a new user
Failure/Error: response.should render_template("user/show")
@request must be an ActionDispatch::Request
# ./spec/requests/users_spec.rb:34
# ./spec/requests/users_spec.rb:26
Finished in 0.41306 seconds
1 example, 1 failure
I am using rspec-rails (2.0.0.beta.20) with capybara (0.3.9). What am
I missing here? For what it's worth I have verified the behaviour
manually: registering a new user does indeed take me to the show page.
Thanks in advance!
Daniel
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users