4 require 'rubyvote/election'
5 require 'rubyvote/positional'
7 class TestPositionalVote < Test::Unit::TestCase
10 vote_array = Array.new
11 3.times {vote_array << "ABC".split("")}
12 3.times {vote_array << "CBA".split("")}
13 2.times {vote_array << "BAC".split("")}
15 assert_equal( "B", BordaVote.new(vote_array).result.winners[0] )