これが、rails test:controllers が私にもたらしたものです。
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".
ストーリーURLを1つオフセットしているようです
これは失敗する特定のテストです。 assert_redirected_to story_url(@story)
テストで何を言うべきかを変更しようとしましたが、それはエラーまたは失敗につながります。
失敗したテストは次のとおりです。
test "adds a story" do
assert_difference "Story.count" do
post stories_path, params: {
story: {
name: 'test story',
link: 'http://www.test.com/'
}
}
end
assert_redirected_to story_url(@story)
assert_not_nil flash[:notice]
end
そしてこれがコントローラーのアクションです
def create
@story = Story.new(story_params)
respond_to do |format|
if @story.save
format.html { redirect_to story_url(@story), notice: "Story was successfully created." }
format.json { render :show, status: :created, location: @story }
else
format.html { render :new, status: :unprocessable_entity }
format.json { render json: @story.errors, status: :unprocessable_entity }
end
end
end
コメントですでに述べたように、使用するときは
setup do
@story = stories(:one)
end
その場合、テスト中に作成されたばかりのストーリーではなく、フィクスチャによって作成された 1 つのストーリーが @story に割り当てられます。
代わりに、テストを次のように変更することをお勧めします。
test "adds a story" do
assert_difference "Story.count" do
post stories_path,
params: { story: { name: 'test story', link: 'http://www.test.com/' } }
end
assert_redirected_to story_url(Story.last)
assert_equal "Story was successfully created.", flash[:notice]
end