49 lines
1.1 KiB
Ruby
49 lines
1.1 KiB
Ruby
require "test_helper"
|
|
|
|
class StoriesControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@story = stories(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get stories_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get new" do
|
|
get new_story_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create story" do
|
|
assert_difference("Story.count") do
|
|
post stories_url, params: { story: { happened: @story.happened, header: @story.header, picture: @story.picture, text: @story.text } }
|
|
end
|
|
|
|
assert_redirected_to story_url(Story.last)
|
|
end
|
|
|
|
test "should show story" do
|
|
get story_url(@story)
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get edit_story_url(@story)
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update story" do
|
|
patch story_url(@story), params: { story: { happened: @story.happened, header: @story.header, picture: @story.picture, text: @story.text } }
|
|
assert_redirected_to story_url(@story)
|
|
end
|
|
|
|
test "should destroy story" do
|
|
assert_difference("Story.count", -1) do
|
|
delete story_url(@story)
|
|
end
|
|
|
|
assert_redirected_to stories_url
|
|
end
|
|
end
|