Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

Requiring Login - Testing Failure - Build Simple Rails App

Getting the following error:

1) Failure:
test_should_create_status_when_logged_in(StatusesControllerTest)[test/functional/statuses_controller_test.rb:37]:
Expected response to be a redirect to <http://test.host/statuses/980190963> but was a redirect to <http://test.host/statuses>

9 tests, 15 assertions, 1 failures, 0 errors, 0 skips

A look at the code shows that:

test "should create status when logged in" do
    sign_in users(:jason)
    assert_difference('Status.count') do
        post :create, status: { content: @status.content }
    end
    assert_redirected_to status_path(assigns(:status)) **#ERROR IS HERE**
end

1 Answer

Jason Seifer
STAFF
Jason Seifer
Treehouse Guest Teacher

You controller is probably redirecting to the status index page. You can either change the test or the controller code to match up.