spec/twitter/rest/tweets_spec.rb in twitter-5.7.1 vs spec/twitter/rest/tweets_spec.rb in twitter-5.8.0

- old
+ new

@@ -345,12 +345,12 @@ end it 'returns an array of Tweets with retweet details embedded' do tweets = @client.retweet(25_938_088_801) expect(tweets).to be_an Array expect(tweets.first).to be_a Twitter::Tweet - expect(tweets.first.text).to eq("As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") - expect(tweets.first.retweeted_tweet.text).to eq("RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") + expect(tweets.first.text).to eq("RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") + expect(tweets.first.retweeted_tweet.text).to eq("As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") expect(tweets.first.retweeted_tweet.id).not_to eq(tweets.first.id) end context 'already retweeted' do before do stub_post('/1.1/statuses/retweet/25938088801.json').to_return(:status => 403, :body => fixture('already_retweeted.json'), :headers => {:content_type => 'application/json; charset=utf-8'}) @@ -391,11 +391,11 @@ end it 'returns an array of Tweets with retweet details embedded' do tweets = @client.retweet!(25_938_088_801) expect(tweets).to be_an Array expect(tweets.first).to be_a Twitter::Tweet - expect(tweets.first.text).to eq("As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") - expect(tweets.first.retweeted_tweet.text).to eq("RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") + expect(tweets.first.text).to eq("RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") + expect(tweets.first.retweeted_tweet.text).to eq("As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush.") expect(tweets.first.retweeted_tweet.id).not_to eq(tweets.first.id) end context 'forbidden' do before do stub_post('/1.1/statuses/retweet/25938088801.json').to_return(:status => 403, :headers => {:content_type => 'application/json; charset=utf-8'})