fields = line.chop.split('/',-1)
logger.debug(">>InspectLine #{fields.inspect}")
if fields[0]!="D"
+ time = nil
+ # Thu Dec 13 16:27:22 2007
+ time_l = fields[-3].split(' ')
+ if time_l.size == 5 && time_l[4].length == 4
+ begin
+ time = Time.parse(
+ "#{time_l[1]} #{time_l[2]} #{time_l[3]} GMT #{time_l[4]}")
+ rescue
+ end
+ end
entries << Entry.new(
{
:name => fields[-5],
{
:revision => fields[-4],
:name => fields[-4],
- :time => Time.parse(fields[-3]),
+ :time => time,
:author => ''
})
})
assert_equal 2, cnt
end
+ def test_entries_rev3
+ rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22)
+ entries = @adapter.entries('sources', rev3_committed_on)
+ assert_equal 2, entries.size
+ assert_equal entries[0].name, "watchers_controller.rb"
+ assert_equal entries[0].lastrev.time, Time.gm(2007, 12, 13, 16, 27, 22)
+ end
+
private
def test_scm_version_for(scm_command_version, version)