This is what rails test:controllers gets me.
Failure:StoriesControllerTest#test_adds_a_story [test/controllers/stories_controller_test.rb:42]:Expected response to be a redirect to <http://www.example.com/stories/980190962> but was a redirect to <http://www.example.com/stories/980190963>.Expected "http://www.example.com/stories/980190962" to be === "http://www.example.com/stories/980190963".
It seems to be offsetting the story url by one
This is the specific test that fails:assert_redirected_to story_url(@story)
I tried changing what the test should say but that leads to either errors or failures.