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

@ -43,5 +43,8 @@ func (m *MockArtist) Get(id string) (*domain.Artist, error) {
if m.err {
return nil, errors.New("Error!")
}
return m.data[id], nil
if d, ok := m.data[id]; ok {
return d, nil
}
return nil, domain.ErrNotFound
}