Sha256: bd2778a90ce8ece40349e5d980d765f43ad7cb04da88190af5aa5a81f62c8ed7

Contents?: true

Size: 1.33 KB

Versions: 8

Compression:

Stored size: 1.33 KB

Contents

require 'test_helper'

module Notee
  class CategoriesControllerTest < ActionController::TestCase
    setup do
      @category = notee_categories(:one)
      @routes = Engine.routes
    end

    test "should get index" do
      get :index
      assert_response :success
      assert_not_nil assigns(:categories)
    end

    test "should get new" do
      get :new
      assert_response :success
    end

    test "should create category" do
      assert_difference('Category.count') do
        post :create, category: {name: @category.name, parent_id: @category.parent_id, slug: @category.slug, status: @category.status }
      end

      assert_redirected_to category_path(assigns(:category))
    end

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

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

    test "should update category" do
      patch :update, id: @category, category: {name: @category.name, parent_id: @category.parent_id, slug: @category.slug, status: @category.status }
      assert_redirected_to category_path(assigns(:category))
    end

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

      assert_redirected_to categories_path
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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