Add testcases for calling results to empty votes.
[rubyvote] / test / range_test.rb
index 26d8600e3b1d2650ed75ffa6418225d189d25d41..79635ecca08ce4619c1478b0ef3da67e482825cb 100644 (file)
@@ -6,6 +6,11 @@ require 'rubyvote/range'
 
 class TestRangeVote < Test::Unit::TestCase
 
+  def test_range_empty
+    vote_array = []
+    assert_nil RangeVote.new(vote_array).result.winners[0]
+  end
+  
   def test_range
     vote_array = []
     42.times {vote_array << {'A' => 10, 'B' => 5, 'C' => 2, 'D' => 1}}

Benjamin Mako Hill || Want to submit a patch?