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

Version Path
attached-1.0.4 test/dummy/test/controllers/images_controller_test.rb
attached-1.0.3 test/dummy/test/controllers/images_controller_test.rb
attached-1.0.2 test/dummy/test/controllers/images_controller_test.rb
attached-1.0.1 test/dummy/test/controllers/images_controller_test.rb
attached-1.0.0 test/dummy/test/functional/images_controller_test.rb
attached-0.6.0 test/dummy/test/functional/images_controller_test.rb
attached-0.5.9 test/dummy/test/functional/images_controller_test.rb
attached-0.5.8 test/dummy/test/functional/images_controller_test.rb
attached-0.5.7 test/dummy/test/functional/images_controller_test.rb
attached-0.5.6 test/dummy/test/functional/images_controller_test.rb