initial
[raindrops.git] / test / test_raindrops_gc.rb
blobb473619416ea6cc7944f015bbe0805e66c6c4496
1 # -*- encoding: binary -*-
2 require 'test/unit'
3 require 'raindrops'
5 class TestRaindropsGc < Test::Unit::TestCase
7   def test_gc
8     assert_nothing_raised do
9       1000000.times { Raindrops.new(24) }
10     end
11   end
13 end