Sha256: 2ae369ad7e92a0ffafee5a5f6a65c9d4d7c043143f3b7dae09701afcb6fcb581

Contents?: true

Size: 1.17 KB

Versions: 59

Compression:

Stored size: 1.17 KB

Contents

require 'test_helper'

module TranslationCenter
  class CategoriesControllerTest < ActionController::TestCase
    setup do
      @category = categories(:one)
    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 }
      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 :edit, id: @category
      assert_response :success
    end
  
    test "should update category" do
      put :update, id: @category, category: { name: @category.name }
      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

59 entries across 59 versions & 2 rubygems

Version Path
translation_center-1.6.2 test/functional/translation_center/categories_controller_test.rb
translation_center-1.6.1 test/functional/translation_center/categories_controller_test.rb
translation_center-1.6.0 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.9 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.8 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.7 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.6 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.5 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.4 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.3 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.2 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.1 test/functional/translation_center/categories_controller_test.rb
translation_center-1.5.0 test/functional/translation_center/categories_controller_test.rb
translation_center-1.4.1 test/functional/translation_center/categories_controller_test.rb
translation_center-1.4.0 test/functional/translation_center/categories_controller_test.rb
translation_center-1.3.1 test/functional/translation_center/categories_controller_test.rb
translation_center-1.3.0 test/functional/translation_center/categories_controller_test.rb
translation_center-1.2.1 test/functional/translation_center/categories_controller_test.rb
translation_center-1.2.0 test/functional/translation_center/categories_controller_test.rb
translation_center-1.1.0 test/functional/translation_center/categories_controller_test.rb