about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_raindrops.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_raindrops.rb b/test/test_raindrops.rb
index 93885ef..aab1f14 100644
--- a/test/test_raindrops.rb
+++ b/test/test_raindrops.rb
@@ -4,6 +4,12 @@ require 'raindrops'
 
 class TestRaindrops < Test::Unit::TestCase
 
+  def test_raindrop_size
+    assert_kind_of Integer, Raindrops::SIZE
+    assert Raindrops::SIZE > 0
+    puts "Raindrops::SIZE = #{Raindrops::SIZE}"
+  end
+
   def test_size
     rd = Raindrops.new(4)
     assert_equal 4, rd.size