require 'test_helper' class ImagesControllerTest < ActionController::TestCase fixtures :all setup do @image = images(:image) @file = fixture_file_upload("/images/image.png", "image/png", :binary) end test "should get index" do get :index assert_response :success assert_not_nil assigns(:images) end test "should get new" do get :new assert_response :success end test "should create image" do assert_difference('Image.count') do post :create, image: { name: @image.name, file: @file } end assert_redirected_to image_path(assigns(:image)) end test "should show image" do get :show, id: @image.id assert_response :success end test "should get edit" do get :edit, id: @image.id assert_response :success end test "should update image" do put :update, id: @image.id, image: @image.attributes assert_redirected_to image_path(assigns(:image)) end test "should destroy image" do assert_difference('Image.count', -1) do delete :destroy, id: @image.id end assert_redirected_to images_path end end