1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-08-28 17:57:25 +02:00

Rails4: fix time related git unit test failure

git-svn-id: http://svn.redmine.org/redmine/trunk@12900 e93f8b46-1217-0410-a6f0-8f06a7374b81
Cette révision appartient à :
Toshi MARUYAMA 2014-02-15 23:13:44 +00:00
Parent e8057d41bb
révision 50ab5ec1b6

Voir le fichier

@ -118,7 +118,7 @@ class RepositoryGitTest < ActiveSupport::TestCase
assert_equal "jsmith <jsmith@foo.bar>", commit.committer
assert_equal User.find_by_login('jsmith'), commit.user
# TODO: add a commit with commit time <> author time to the test repository
assert_equal "2007-12-14 09:22:52".to_time, commit.committed_on
assert_equal Time.gm(2007, 12, 14, 9, 22, 52), commit.committed_on
assert_equal "2007-12-14".to_date, commit.commit_date
assert_equal 3, commit.filechanges.count
change = commit.filechanges.sort_by(&:path).first