Sha256: 141811c19dd0addc7ca946e5f58a7800df2b728b4ba85061ac5caacb451990b2

Contents?: true

Size: 617 Bytes

Versions: 3

Compression:

Stored size: 617 Bytes

Contents

require File.expand_path('../../spec_helper', __FILE__)

describe Yammer::Api::Thread do

  before :all do
    @client = Yammer::Client.new(
      :site_url     => 'https://www.yammer.com',
      :client_id     => 'PRbTcg9qjgKsp4jjpm1pw',
      :client_secret => 'Xn7kp7Ly0TCY4GtZWkmSsqGEPg10DmMADyjWkf2U',
      :access_token  => 'TolNOFka9Uls2DxahNi78A',
      :connection_client  => Yammer::HttpConnection
    )
  end

  subject { @client }

  describe '#get_thread' do
    it 'should fetch a thread' do
      subject.should_receive(:get).with('/api/v1/threads/1', {})
      subject.get_thread(1)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yammer-client-0.1.2 spec/api/thread_spec.rb
yammer-client-0.1.1 spec/api/thread_spec.rb
yammer-client-0.1.0 spec/api/thread_spec.rb