no voting reminders for managers

This commit is contained in:
Mark Moser 2017-02-09 16:27:00 -06:00
parent cb6dccded8
commit 3c0627e9ea
2 changed files with 4 additions and 3 deletions

View File

@ -26,7 +26,8 @@ class ReviewerReminder
from reviewer_votes rev
inner join users u on u.id = rev.user_id
inner join candidates c on c.id = rev.candidate_id
where rev.vote = 0 and rev.veto = 0 and u.active is not false;"
where rev.vote = 0 and rev.veto = 0
and u.role != 'manager' and u.active is not false;"
ActiveRecord::Base.connection.exec_query(sql)
end
end

View File

@ -2,9 +2,9 @@
require 'test_helper'
class ReviewerReminderTest < ActiveSupport::TestCase
test "collection is created with four results" do
test "collection is created with results" do
reminders = ReviewerReminder.new
assert_equal 3, reminders.size
assert_equal 6, reminders.size
end
test "each reminder has needed attributes" do