spec/lib/rspotify/user_spec.rb in rspotify-1.7.0 vs spec/lib/rspotify/user_spec.rb in rspotify-1.8.0

- old
+ new

@@ -4,11 +4,11 @@ before(:each) do # Get wizzler user as a testing sample @user = VCR.use_cassette('user:find:wizzler') do RSpotify::User.find('wizzler') - end + end end it 'should find user with correct attributes' do expect(@user.external_urls['spotify']) .to eq 'https://open.spotify.com/user/wizzler' expect(@user.href) .to eq 'https://api.spotify.com/v1/users/wizzler' @@ -19,10 +19,10 @@ it 'should find user with correct playlists' do # Keys generated specifically for the tests. Should be removed in the future client_id = '5ac1cda2ad354aeaa1ad2693d33bb98c' client_secret = '155fc038a85840679b55a1822ef36b9b' - VCR.use_cassette('authenticate:5ac1cda2ad354aeaa1ad2693d33bb98c') do + VCR.use_cassette('authenticate:client') do RSpotify.authenticate(client_id, client_secret) end playlists = VCR.use_cassette('user:wizzler:playlists:limit:20:offset:0') do @user.playlists