Sha256: 6a22924ff8729c741b8cb6d082da41743588306bb71fbc9a284ee08b9e2c73c7
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 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
10 entries across 10 versions & 1 rubygems