instiki/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb

46 lines
1.2 KiB
Ruby
Raw Normal View History

require 'test_helper'
2007-01-22 14:43:50 +01:00
class <%= controller_class_name %>ControllerTest < ActionController::TestCase
test "should get index" do
2007-01-22 14:43:50 +01:00
get :index
assert_response :success
assert_not_nil assigns(:<%= table_name %>)
2007-01-22 14:43:50 +01:00
end
test "should get new" do
get :new
2007-01-22 14:43:50 +01:00
assert_response :success
end
test "should create <%= file_name %>" do
assert_difference('<%= class_name %>.count') do
post :create, :<%= file_name %> => { }
end
2007-01-22 14:43:50 +01:00
assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
2007-01-22 14:43:50 +01:00
end
test "should show <%= file_name %>" do
get :show, :id => <%= table_name %>(:one).to_param
2007-01-22 14:43:50 +01:00
assert_response :success
end
test "should get edit" do
get :edit, :id => <%= table_name %>(:one).to_param
2007-01-22 14:43:50 +01:00
assert_response :success
end
test "should update <%= file_name %>" do
put :update, :id => <%= table_name %>(:one).to_param, :<%= file_name %> => { }
assert_redirected_to <%= file_name %>_path(assigns(:<%= file_name %>))
2007-01-22 14:43:50 +01:00
end
test "should destroy <%= file_name %>" do
assert_difference('<%= class_name %>.count', -1) do
delete :destroy, :id => <%= table_name %>(:one).to_param
end
2007-01-22 14:43:50 +01:00
assert_redirected_to <%= table_name %>_path
2007-01-22 14:43:50 +01:00
end
end