##// END OF EJS Templates
Rails4: fix time related git adapter test failures...
Toshi MARUYAMA -
r12607:e8df3d50e8d0
parent child
Show More
@@ -392,7 +392,7 begin
392 assert_equal "4a07fe31bffcf2888791f3e6cbc9c4545cefe3e8", last_rev.scmid
392 assert_equal "4a07fe31bffcf2888791f3e6cbc9c4545cefe3e8", last_rev.scmid
393 assert_equal "4a07fe31bffcf2888791f3e6cbc9c4545cefe3e8", last_rev.identifier
393 assert_equal "4a07fe31bffcf2888791f3e6cbc9c4545cefe3e8", last_rev.identifier
394 assert_equal "Adam Soltys <asoltys@gmail.com>", last_rev.author
394 assert_equal "Adam Soltys <asoltys@gmail.com>", last_rev.author
395 assert_equal "2009-06-24 05:27:38".to_time, last_rev.time
395 assert_equal Time.gm(2009, 6, 24, 5, 27, 38), last_rev.time
396 end
396 end
397
397
398 def test_last_rev_with_spaces_in_filename
398 def test_last_rev_with_spaces_in_filename
@@ -403,7 +403,7 begin
403 assert_equal "ed5bb786bbda2dee66a2d50faf51429dbc043a7b", last_rev.identifier
403 assert_equal "ed5bb786bbda2dee66a2d50faf51429dbc043a7b", last_rev.identifier
404 assert_equal "#{@str_felix_hex} <felix@fachschaften.org>",
404 assert_equal "#{@str_felix_hex} <felix@fachschaften.org>",
405 last_rev.author
405 last_rev.author
406 assert_equal "2010-09-18 19:59:46".to_time, last_rev.time
406 assert_equal Time.gm(2010, 9, 18, 19, 59, 46), last_rev.time
407 end
407 end
408
408
409 def test_latin_1_path
409 def test_latin_1_path
General Comments 0
You need to be logged in to leave comments. Login now