From d55d8ce27259efaede70234db7301d5af73831db Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 13 Nov 2017 22:33:45 +1300 Subject: [PATCH] Test no error is raised by time parsing and GetLatestCommitTime --- repo_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/repo_test.go b/repo_test.go index 79c218f..acb1a8a 100644 --- a/repo_test.go +++ b/repo_test.go @@ -11,12 +11,14 @@ import ( ) func TestGetLatestCommitTime(t *testing.T) { - lct, _ := GetLatestCommitTime(".") + lct, err := GetLatestCommitTime(".") + assert.NoError(t, err) // Time is in the past assert.True(t, lct.Unix() < time.Now().Unix()) // Time is after Mon Oct 23 03:52:09 2017 +0300 // which is the time of commit // d47b98c44c9a6472e44ab80efe65235e11c6da2a - refTime, _ := time.Parse("Mon Jan 02 15:04:05 2006 -0700", "Mon Oct 23 03:52:09 2017 +0300") + refTime, err := time.Parse("Mon Jan 02 15:04:05 2006 -0700", "Mon Oct 23 03:52:09 2017 +0300") + assert.NoError(t, err) assert.True(t, lct.Unix() > refTime.Unix()) }