Exemplo n.º 1
0
        public void ThenTheTrackNoLongerExistsInThePlaylist()
        {
            IRestResponse response = RESTHelpers.GETPlaylist(
                ConfigurationManager.AppSettings["SpotifyURL"].ToString(),
                ConfigurationManager.AppSettings["PlayListResource"].ToString(),
                ConfigurationManager.AppSettings["ModifyToken"]
                );

            RESTHelpers.Is200OKResponse(response);

            response.Content.Contains(ConfigurationManager.AppSettings["DeleteTrackID"]).Should().BeFalse();
        }