Sha256: b4c20889de4c6c7b9628a0f6b90f33671799dec1ff8fbb3b6c55b2c58362a352

Contents?: true

Size: 980 Bytes

Versions: 14

Compression:

Stored size: 980 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe "Chatterbot::Favorite" do
  describe "#favorite" do
    before(:each) do
      @bot = test_bot
      @t = Twitter::Tweet.new(:id => 7890, :text => "something awesome that you should fave")
    end

    it "calls require_login" do
      expect(@bot).to receive(:require_login).and_return(false)
      @bot.favorite @t
    end

    context "data" do
      before(:each) do
        expect(@bot).to receive(:require_login).and_return(true)
        allow(@bot).to receive(:client).and_return(double(Twitter::Client))

        allow(@bot).to receive(:debug_mode?).and_return(false)
      end

      it "calls client.favorite with an id" do   
        expect(@bot.client).to receive(:favorite).with(7890)
        @bot.favorite(@t.id)
      end

      it "calls client.retweet with a tweet" do   
        expect(@bot.client).to receive(:favorite).with(7890)
        @bot.favorite(@t)
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
chatterbot-2.2.0 spec/favorite_spec.rb
chatterbot-2.1.0 spec/favorite_spec.rb
chatterbot-2.0.5 spec/favorite_spec.rb
chatterbot-2.0.4 spec/favorite_spec.rb
chatterbot-2.0.3 spec/favorite_spec.rb
chatterbot-2.0.2 spec/favorite_spec.rb
chatterbot-1.0.2 spec/favorite_spec.rb
chatterbot-2.0.0.pre spec/favorite_spec.rb
chatterbot-1.0.1 spec/favorite_spec.rb
chatterbot-1.0.0 spec/favorite_spec.rb
chatterbot-0.9.3 spec/favorite_spec.rb
chatterbot-0.9.2 spec/favorite_spec.rb
chatterbot-0.9.1 spec/favorite_spec.rb
chatterbot-0.9.0 spec/favorite_spec.rb