Ignore:
Timestamp:
Oct 18, 2009, 12:06:41 AM (15 years ago)
Author:
Tatsukawa, Akimichi
Message:

commit from Pittsburgh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ruby/trunk/lib/adl_parser/test/scanner_test.rb

    r320 r321  
    128128  end
    129129
     130  must "assert CADLScanner scanner scan V_ISO8601_EXTENDED_TIME" do
     131    @scanner.scan("01:00:00") do |sym, val|
     132      assert_equal :V_ISO8601_EXTENDED_TIME,sym
     133      assert_equal "01:00:00",val
     134    end
     135    @scanner.scan("12:01") do |sym, val|
     136      assert_equal :V_ISO8601_EXTENDED_TIME,sym
     137      assert_equal "12:01",val
     138    end
     139
     140  end
     141
    130142end
    131143
Note: See TracChangeset for help on using the changeset viewer.