aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold_resource/templates/functional_test.rb
blob: 0c68fd3122d4ecebaee9f15e2196fd6d8129e447 (plain) (blame)
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
50
51
52
53
54
55
56
57
require File.dirname(__FILE__) + '<%= '/..' * controller_class_nesting_depth %>/../test_helper'
require '<%= controller_file_path %>_controller'

# Re-raise errors caught by the controller.
class <%= controller_class_name %>Controller; def rescue_action(e) raise e end; end

class <%= controller_class_name %>ControllerTest < Test::Unit::TestCase
  fixtures :<%= table_name %>

  def setup
    @controller = <%= controller_class_name %>Controller.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
  end

  def test_should_get_index
    get :index
    assert_response :success
    assert assigns(:<%= table_name %>)
  end

  def test_should_get_new
    get :new
    assert_response :success
  end
  
  def test_should_create_<%= file_name %>
    old_count = <%= class_name %>.count
    post :create, :<%= file_name %> => { }
    assert_equal old_count+1, <%= class_name %>.count
    
    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end

  def test_should_show_<%= file_name %>
    get :show, :id => 1
    assert_response :success
  end

  def test_should_get_edit
    get :edit, :id => 1
    assert_response :success
  end
  
  def test_should_update_<%= file_name %>
    put :update, :id => 1, :<%= file_name %> => { }
    assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
  end
  
  def test_should_destroy_<%= file_name %>
    old_count = <%= class_name %>.count
    delete :destroy, :id => 1
    assert_equal old_count-1, <%= class_name %>.count
    
    assert_redirected_to <%= table_name %>_path
  end
end