fix admin/candidate[s] naming

This commit is contained in:
Mark Moser 2016-09-22 14:21:34 -05:00
parent 0a9bf96e24
commit aeef75bf8b
5 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@ module Admin
if @candidate.persisted?
send_notifications @candidate
redirect_to admin_candidate_path,
redirect_to admin_candidates_path,
flash: { success: "Sucessfully created candidate #{@candidate.name}" }
else
flash[:error] = "Failed to save candidate."
@ -38,7 +38,7 @@ module Admin
@candidate.update(candidate_params)
if @candidate.save
redirect_to admin_candidate_path, flash: { success: "#{@candidate.name} updated!" }
redirect_to admin_candidates_path, flash: { success: "#{@candidate.name} updated!" }
else
flash[:error] = "Failed to save candidate."
render :edit

View File

@ -40,7 +40,7 @@ Rails.application.routes.draw do
post "/admin/profile", to: "admin/profile#update", as: :admin_update_profile
get "/admin/profile/edit", to: "admin/profile#edit", as: :admin_edit_profile
get "/admin/candidate", to: "admin/candidate#index", as: :admin_candidate
get "/admin/candidates", to: "admin/candidate#index", as: :admin_candidates
get "/admin/candidate/new", to: "admin/candidate#new", as: :admin_new_candidate
post "/admin/candidate/new", to: "admin/candidate#create", as: :admin_create_candidate
get "/admin/candidate/:id", to: "admin/candidate#edit", as: :admin_edit_candidate

View File

@ -4,7 +4,7 @@ require 'test_helper'
module Admin
class CandidateControllerTest < ActionDispatch::IntegrationTest
test "should require auth or redirect" do
get admin_candidate_url
get admin_candidates_url
assert_redirected_to admin_login_url
get admin_new_candidate_url
@ -16,14 +16,14 @@ module Admin
test "should get candidate list" do
auth_recruiter
get admin_candidate_url
get admin_candidates_url
assert_response :success
assert assigns(:candidates), "@candidates not present"
end
test 'should have edit links' do
auth_recruiter
get admin_candidate_url
get admin_candidates_url
assert_response :success
assert_select "a[href='#{admin_edit_candidate_path(candidates(:martha))}']"
end

View File

@ -27,7 +27,7 @@ module Admin
{ name: 'new name', email: 'test@mailinator.com', experience: '0-3', quiz_id: quizzes(:fed).id } }
end
end
assert_redirected_to admin_candidate_path
assert_redirected_to admin_candidates_path
assert flash[:success]
end

View File

@ -20,7 +20,7 @@ module Admin
refute_equal candidate.name, Candidate.find_by(id: candidate.id).name
assert_equal candidate.test_hash, Candidate.find_by(id: candidate.id).test_hash
assert_redirected_to admin_candidate_url
assert_redirected_to admin_candidates_url
end
test 'should redirect to form on fail' do