mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
SQL/Orm AlbumRepository complete
This commit is contained in:
parent
56273dd4d9
commit
b9815fc653
9 changed files with 196 additions and 19 deletions
|
@ -38,5 +38,12 @@ var _ = Describe("Initialize test DB", func() {
|
|||
for _, a := range testArtists {
|
||||
artistRepo.Put(&a)
|
||||
}
|
||||
albumRepository := NewAlbumRepository()
|
||||
for _, a := range testAlbums {
|
||||
err := albumRepository.Put(&a)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue