Sha256: 407639f0d3dbe894110e6b6fd8856eb851a998c57ac15310b5722c3233c03587

Contents?: true

Size: 1.12 KB

Versions: 8

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

8 entries across 8 versions & 1 rubygems

Version Path
notee-1.1.2.4 test/controllers/notee/images_controller_test.rb
notee-1.1.2.3 test/controllers/notee/images_controller_test.rb
notee-1.1.2.2 test/controllers/notee/images_controller_test.rb
notee-1.1.2.1 test/controllers/notee/images_controller_test.rb
notee-1.1.2 test/controllers/notee/images_controller_test.rb
notee-1.1.1 test/controllers/notee/images_controller_test.rb
notee-1.1.0 test/controllers/notee/images_controller_test.rb
notee-1.0.8 test/controllers/notee/images_controller_test.rb