X-Git-Url: https://projects.mako.cc/source/rubyvote/blobdiff_plain/1da0a60f448820070d47333a7316364e009f203e..d28df2a4166aa83fd9a0eb1f5a0599b8fc1c9798:/test/election_test.rb?ds=sidebyside diff --git a/test/election_test.rb b/test/election_test.rb index e8a9c45..7675e58 100644 --- a/test/election_test.rb +++ b/test/election_test.rb @@ -11,7 +11,16 @@ class TestElectionVote < Test::Unit::TestCase assert_equal( "C", PluralityVote.new(vote_array).result.winners[0] ) end + def test_plurality_nonstring + vote_array = [1,2,3,1,1,1,2,3] + assert_equal( 1, PluralityVote.new(vote_array).result.winners[0] ) + end + def test_invalid_voteobj + vote_array = [1,2,nil,1] + assert_raise(InvalidVoteError) { PluralityVote.new(vote_array).result.winners[0] } + end + def test_approval vote_array = Array.new 10.times {vote_array << "AB".split("")}