#--- # 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 @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: { name: 'sam', password: 'secret', password_confirmation: 'secret' } 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 patch :update, id: @user, user: { name: @user.name, password: 'secret', password_confirmation: 'secret' } 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