Show
Ignore:
Timestamp:
09/03/08 02:04:11 (4 months ago)
Author:
hajimehoshi
Message:

Refactored

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/bokeshi/trunk/bokeshi/test_cpu.rb

    r18571 r18694  
    3838      assert_equal([Seq.new(0, 0, 1)], 
    3939                   cpu.next_removings([Seq.new(0, 0, 1)]).sort) 
     40      assert_equal([Seq.new(0, 0, 1), Seq.new(0, 0, 2), Seq.new(0, 1, 1), 
     41                    Seq.new(1, 0, 1), Seq.new(1, 0, 2), Seq.new(1, 1, 1)].sort, 
     42                   cpu.next_removings([Seq.new(0, 0, 2), Seq.new(1, 0, 2)]).sort) 
     43      assert_equal([], 
     44                   cpu.next_removings([]).sort) 
    4045    end 
    4146