Sha256: 566aaf19e39537de1e91f616f855fec8a07003d04d2ed1acfba3531714d734ce
Contents?: true
Size: 1.15 KB
Versions: 8
Compression:
Stored size: 1.15 KB
Contents
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
Version data entries
8 entries across 8 versions & 1 rubygems