Get() methods from all repositories now return a ErrNotFound when the id is nonexistent

This commit is contained in:
Deluan 2016-03-18 11:33:50 -04:00
parent db34122faf
commit c90a50827a
11 changed files with 70 additions and 42 deletions

View file

@ -46,8 +46,10 @@ func (m *MockMediaFile) Get(id string) (*domain.MediaFile, error) {
if m.err {
return nil, errors.New("Error!")
}
mf := m.data[id]
return mf, nil
if d, ok := m.data[id]; ok {
return d, nil
}
return nil, domain.ErrNotFound
}
func (m *MockMediaFile) FindByAlbum(artistId string) (*domain.MediaFiles, error) {