Sha256: 11b8831bb20183d9394f5409ec97b541a5321a977d229e4cc0d76d7e8e38806c
Contents?: true
Size: 597 Bytes
Versions: 6
Compression:
Stored size: 597 Bytes
Contents
require File.expand_path('../../spec_helper', __FILE__) describe Yammer::Api::Topic do before :all do @client = Yammer::Client.new( :site_url => 'https://www.yammer.com', :client_id => 'PRbTcg9qjgKsp4jjpm1pw', :client_secret => 'Xn7kp7Ly0TCY4GtZWkmSsqGEPg10DmMADyjWkf2U', :access_token => 'TolNOFka9Uls2DxahNi78A' ) end subject { @client } describe '#topics' do it 'should fetch topic' do subject.should_receive(:get).with('/api/v1/topics/1',{ :is_followed_by => 2 }) subject.get_topic(1, :is_followed_by => 2) end end end
Version data entries
6 entries across 6 versions & 1 rubygems