3 class TestTimeline < Test::Unit::TestCase
5 @timeline = Conditions::Timeline.new(5)
8 def test_new_should_be_empty
9 assert_equal 0, @timeline.size
12 def test_should_not_grow_to_more_than_size
17 assert_equal [10, 9, 8, 7, 6], @timeline
20 def test_clear_should_clear_array
22 assert_equal [], @timeline.clear