Always fill album's min_year if max_year is filled

This commit is contained in:
Deluan 2020-04-17 19:56:52 -04:00 committed by Deluan Quintão
parent 4aeb63c16e
commit 69dc4d97b3
2 changed files with 32 additions and 3 deletions

View file

@ -73,4 +73,16 @@ var _ = Describe("AlbumRepository", func() {
})
})
Describe("getMinYear", func() {
It("returns 0 when there's no valid year", func() {
Expect(getMinYear("a b c")).To(Equal(0))
Expect(getMinYear("")).To(Equal(0))
})
It("returns 0 when all values are 0", func() {
Expect(getMinYear("0 0 0 ")).To(Equal(0))
})
It("returns the smallest value from the list", func() {
Expect(getMinYear("2000 0 1800")).To(Equal(1800))
})
})
})