Adds tests for AlbumDatabase

This commit is contained in:
2016-01-21 19:34:35 +01:00
parent ef458eaaea
commit 40e1e55215
4 changed files with 60 additions and 2 deletions

View File

@@ -22,6 +22,6 @@ func (db *AlbumDatabase) Get(AlbumID) (*Album, error) {
return nil, notYetImplemented()
}
func (db *AlbumDatabase) ByPurchaseDate() ([]*Album, error) {
func (db *AlbumDatabase) ByPurchaseDate() ([]AlbumID, error) {
return nil, notYetImplemented()
}