mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Uses Unix milliseconds support from standard Go lib
This commit is contained in:
parent
ec68d69d56
commit
30ae468dc1
6 changed files with 10 additions and 43 deletions
|
@ -1,16 +0,0 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Time Conversion", func() {
|
||||
It("converts from Date to Millis and back to Date", func() {
|
||||
date := time.Date(2002, 8, 9, 12, 11, 13, 1000000, time.Local)
|
||||
milli := ToMillis(date)
|
||||
Expect(ToTime(milli)).To(Equal(date))
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue