65 lines
1.5 KiB
Ruby
65 lines
1.5 KiB
Ruby
#---
|
|
# Excerpted from "Agile Web Development with Rails",
|
|
# published by The Pragmatic Bookshelf.
|
|
# Copyrights apply to this code. It may not be used to create training material,
|
|
# courses, books, articles, and the like. Contact us if you are in doubt.
|
|
# We make no guarantees that this code is fit for any purpose.
|
|
# Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
|
|
#---
|
|
require 'test_helper'
|
|
|
|
class UsersControllerTest < ActionController::TestCase
|
|
setup do
|
|
@input_attributes = {
|
|
name: "sam",
|
|
password: "private",
|
|
password_confirmation: "private"
|
|
}
|
|
|
|
@user = users(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:users)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
#...
|
|
test "should create user" do
|
|
assert_difference('User.count') do
|
|
post :create, user: @input_attributes
|
|
end
|
|
|
|
assert_redirected_to users_path
|
|
end
|
|
|
|
test "should show user" do
|
|
get :show, id: @user
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, id: @user
|
|
assert_response :success
|
|
end
|
|
|
|
#...
|
|
test "should update user" do
|
|
put :update, id: @user, user: @input_attributes
|
|
assert_redirected_to users_path
|
|
end
|
|
|
|
test "should destroy user" do
|
|
assert_difference('User.count', -1) do
|
|
delete :destroy, id: @user
|
|
end
|
|
|
|
assert_redirected_to users_path
|
|
end
|
|
end
|