Sha256: 0b89653e83d725bb1cad126510832a74d4574434a9dd21f4f9075dd4beb8a242

Contents?: true

Size: 1.12 KB

Versions: 27

Compression:

Stored size: 1.12 KB

Contents

require 'test_helper'

module Notee
  class ImagesControllerTest < ActionController::TestCase
    setup do
      @image = notee_images(:one)
      @routes = Engine.routes
    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: { content: @image.content }
      end

      assert_redirected_to image_path(assigns(:image))
    end

    test "should show image" do
      get :show, id: @image
      assert_response :success
    end

    test "should get edit" do
      get :notee, id: @image
      assert_response :success
    end

    test "should update image" do
      patch :update, id: @image, image: { content: @image.content }
      assert_redirected_to image_path(assigns(:image))
    end

    test "should destroy image" do
      assert_difference('Image.count', -1) do
        delete :destroy, id: @image
      end

      assert_redirected_to images_path
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
notee-1.0.7 test/controllers/notee/images_controller_test.rb
notee-1.0.6 test/controllers/notee/images_controller_test.rb
notee-1.0.5 test/controllers/notee/images_controller_test.rb
notee-1.0.4 test/controllers/notee/images_controller_test.rb
notee-1.0.3 test/controllers/notee/images_controller_test.rb
notee-1.0.2 test/controllers/notee/images_controller_test.rb
notee-1.0.1 test/controllers/notee/images_controller_test.rb
notee-1.0.0 test/controllers/notee/images_controller_test.rb
notee-0.4.0 test/controllers/notee/images_controller_test.rb
notee-0.3.7 test/controllers/notee/images_controller_test.rb
notee-0.3.6 test/controllers/notee/images_controller_test.rb
notee-0.3.5 test/controllers/notee/images_controller_test.rb
notee-0.3.4.1 test/controllers/notee/images_controller_test.rb
notee-0.3.4 test/controllers/notee/images_controller_test.rb
notee-0.3.3 test/controllers/notee/images_controller_test.rb
notee-0.3.2 test/controllers/notee/images_controller_test.rb
notee-0.3.1 test/controllers/notee/images_controller_test.rb
notee-0.3.0 test/controllers/notee/images_controller_test.rb
notee-0.2.9 test/controllers/notee/images_controller_test.rb
notee-0.2.8 test/controllers/notee/images_controller_test.rb