Add MediaFile.FindByPath

This commit is contained in:
Deluan 2020-01-16 15:56:24 -05:00
parent ed631edc08
commit 7a16d41abe
5 changed files with 56 additions and 5 deletions

View file

@ -0,0 +1,24 @@
package persistence
import (
"github.com/cloudsonic/sonic-server/model"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("MediaFileRepository", func() {
var repo model.MediaFileRepository
BeforeEach(func() {
repo = NewMediaFileRepository()
})
Describe("FindByPath", func() {
It("returns all records from a given ArtistID", func() {
Expect(repo.FindByPath("/beatles/1")).To(Equal(model.MediaFiles{
songComeTogether,
}))
})
})
})