X-Git-Url: https://projects.mako.cc/source/rubyvote/blobdiff_plain/ebb1c7006d50d8761066bcd5d0e6bbc347b9e0c8..0e05e46d80413a70fc4aa10bfabbbac048add5a8:/test/election_test.rb diff --git a/test/election_test.rb b/test/election_test.rb index 7675e58..2afab27 100644 --- a/test/election_test.rb +++ b/test/election_test.rb @@ -5,6 +5,11 @@ require 'rubyvote/election' class TestElectionVote < Test::Unit::TestCase + def test_plurality_empty + vote_array = [] + assert_nil PluralityVote.new(vote_array).result.winners[0] + end + def test_plurality vote_array = "ABCABCABCCCBBAAABABABCCCCCCCCCCCCCA".split("") @@ -21,6 +26,11 @@ class TestElectionVote < Test::Unit::TestCase assert_raise(InvalidVoteError) { PluralityVote.new(vote_array).result.winners[0] } end + def test_approval_empty + vote_array = [] + assert_nil ApprovalVote.new(vote_array).result.winners[0] + end + def test_approval vote_array = Array.new 10.times {vote_array << "AB".split("")}