o Caught a bug for elections whose votes aren't strings of length 1.
git-svn-id: svn://rubyforge.org/var/svn/rubyvote/trunk@20
1440c7f4-e209-0410-9a04-
881b5eb134a8
votes = @election.votes unless votes
defeats = Array.new
votes = @election.votes unless votes
defeats = Array.new
+ candidates = [candidates] unless candidates.class == Array
candidates.each do |candidate|
candidates.each do |challenger|
next if candidate == challenger
candidates.each do |candidate|
candidates.each do |challenger|
next if candidate == challenger
# see the array with the standard defeats
transitive_defeats = self.defeats(candidates, votes)
# see the array with the standard defeats
transitive_defeats = self.defeats(candidates, votes)
+ candidates = [candidates] unless candidates.class == Array
candidates.each do |cand1|
candidates.each do |cand2|
candidates.each do |cand3|
candidates.each do |cand1|
candidates.each do |cand2|
candidates.each do |cand3|
assert_equal [['B'], ['C'], ['D'], ['A']], result.get_full_results
end
assert_equal [['B'], ['C'], ['D'], ['A']], result.get_full_results
end
+ #
+ # At one point, we happened to be getting correct results due to the
+ # happy accident that, for example, 'B'.each returns 'B'. The
+ # following election with a single integer vote catches that
+ # condition.
+ #
+ def test_ssd_single_vote
+ result = CloneproofSSDVote.new([[78]]).result
+ assert_equal 78, result.winners[0]
+ assert_equal [[78]], result.get_full_results
+ end
+