it('gets the album info from cache', async () => {
      const albumInfo = factory<AlbumInfo>('album-info')
      const hasCacheMock = this.mock(cache, 'has', true)
      const getCacheMock = this.mock(cache, 'get', albumInfo)
      const getMock = this.mock(http, 'get')