mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-27 04:07:08 +00:00
Refactor: TotalTimest return seconds (#25370)
so template/browser can deal with string format --- *Sponsored by Kithara Software GmbH*
This commit is contained in:
parent
bd2e3226be
commit
749802c922
3 changed files with 11 additions and 11 deletions
|
@ -86,8 +86,8 @@ func TestTotalTimes(t *testing.T) {
|
|||
assert.NoError(t, err)
|
||||
assert.Len(t, total, 1)
|
||||
for user, time := range total {
|
||||
assert.Equal(t, int64(1), user.ID)
|
||||
assert.Equal(t, "6 minutes 40 seconds", time)
|
||||
assert.EqualValues(t, 1, user.ID)
|
||||
assert.EqualValues(t, 400, time)
|
||||
}
|
||||
|
||||
total, err = issues_model.TotalTimes(&issues_model.FindTrackedTimesOptions{IssueID: 2})
|
||||
|
@ -95,9 +95,9 @@ func TestTotalTimes(t *testing.T) {
|
|||
assert.Len(t, total, 2)
|
||||
for user, time := range total {
|
||||
if user.ID == 2 {
|
||||
assert.Equal(t, "1 hour 1 minute", time)
|
||||
assert.EqualValues(t, 3662, time)
|
||||
} else if user.ID == 1 {
|
||||
assert.Equal(t, "20 seconds", time)
|
||||
assert.EqualValues(t, 20, time)
|
||||
} else {
|
||||
assert.Error(t, assert.AnError)
|
||||
}
|
||||
|
@ -107,8 +107,8 @@ func TestTotalTimes(t *testing.T) {
|
|||
assert.NoError(t, err)
|
||||
assert.Len(t, total, 1)
|
||||
for user, time := range total {
|
||||
assert.Equal(t, int64(2), user.ID)
|
||||
assert.Equal(t, "1 second", time)
|
||||
assert.EqualValues(t, 2, user.ID)
|
||||
assert.EqualValues(t, 1, time)
|
||||
}
|
||||
|
||||
total, err = issues_model.TotalTimes(&issues_model.FindTrackedTimesOptions{IssueID: 4})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue