summaryrefslogtreecommitdiff
path: root/lib/generators/nifty/scaffold/templates/tests/testunit/controller.rb
blob: 8b99836262e56c9c845a3decfa4e523e3744be96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require 'test_helper'

class <%= plural_class_name %>ControllerTest < ActionController::TestCase
  setup do
    <%= item_path :instance_variable => true %> = <%= plural_name %>(:one)
  end

  test "should get index" do
    get :index
    assert_response :success
    assert_not_nil assigns(:<%= plural_name %>)
  end

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

  test "should create <%= item_path %>" do
    assert_difference('<%= class_name %>.count') do
      post :create, <%= item_path %>: @<%= item_path %>.attributes
    end

    assert_redirected_to <%= item_path %>_path(assigns(:<%= item_path %>))
  end

  test "should show <%= item_path %>" do
    get :show, id: @<%= item_path %>.to_param
    assert_response :success
  end

  test "should get edit" do
    get :edit, id: @<%= item_path %>.to_param
    assert_response :success
  end

  test "should update <%= item_path %>" do
    put :update, id: @<%= item_path %>.to_param, <%= item_path %>: @<%= item_path %>.attributes
    assert_redirected_to <%= item_path %>_path(assigns(:<%= item_path %>))
  end

  test "should destroy <%= item_path %>" do
    assert_difference('<%= class_name %>.count', -1) do
      delete :destroy, id: @<%= item_path %>.to_param
    end

    assert_redirected_to <%= plural_name %>_path
  end
end