Remove old refresh code

This commit is contained in:
Deluan 2022-12-19 11:23:57 -05:00 committed by Deluan Quintão
parent 83ff44f5f4
commit 566ae93950
4 changed files with 19 additions and 332 deletions

View file

@ -69,6 +69,7 @@ var _ = Describe("MediaFiles", func() {
Expect(album.CreatedAt).To(Equal(t("2022-12-19 08:30")))
})
})
When("we have multiple songs", func() {
BeforeEach(func() {
mfs = MediaFiles{
@ -86,6 +87,18 @@ var _ = Describe("MediaFiles", func() {
Expect(album.UpdatedAt).To(Equal(t("2022-12-19 09:45")))
Expect(album.CreatedAt).To(Equal(t("2022-12-19 07:30")))
})
Context("MinYear", func() {
It("returns 0 when all values are 0", func() {
mfs = MediaFiles{{Year: 0}, {Year: 0}, {Year: 0}}
a := mfs.ToAlbum()
Expect(a.MinYear).To(Equal(0))
})
It("returns the smallest value from the list, not counting 0", func() {
mfs = MediaFiles{{Year: 2000}, {Year: 0}, {Year: 1999}}
a := mfs.ToAlbum()
Expect(a.MinYear).To(Equal(1999))
})
})
})
})
Context("Calculated attributes", func() {