Sha256: 15691c86ccb24d798f7fcdd438393eb613abfcd82a7899de4f6f3ceb17b9824e
Contents?: true
Size: 1.38 KB
Versions: 4
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe FbGraph::Checkin, '.new' do it 'should accept FbGraph::Place as place' do checkin = FbGraph::Checkin.new(12345, :place => FbGraph::Place.new(123456)) checkin.place.should == FbGraph::Place.new(123456) end it 'should accept String/Integer as place' do checkin1 = FbGraph::Checkin.new(12345, :place => 123456) checkin2 = FbGraph::Checkin.new(12345, :place => '123456') checkin1.place.should == FbGraph::Place.new(123456) checkin2.place.should == FbGraph::Place.new('123456') end end describe FbGraph::Checkin, '.search' do context 'when no access_token given' do it 'should raise FbGraph::Unauthorized' do mock_graph :get, 'search', 'checkins/search_public', :params => { :type => 'checkin' }, :status => [401, 'Unauthorized'] do lambda do FbGraph::Checkin.search end.should raise_exception(FbGraph::Unauthorized) end end end context 'when access_token is given' do it 'should return checkins as FbGraph::Checkin' do mock_graph :get, 'search', 'checkins/search_private', :params => { :type => 'checkin', :access_token => 'access_token' } do checkins = FbGraph::Checkin.search(:access_token => 'access_token') checkins.each do |checkin| checkin.should be_instance_of(FbGraph::Checkin) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fb_graph-1.7.5 | spec/fb_graph/checkin_spec.rb |
fb_graph-1.7.4 | spec/fb_graph/checkin_spec.rb |
fb_graph-1.7.3 | spec/fb_graph/checkin_spec.rb |
fb_graph-1.7.2 | spec/fb_graph/checkin_spec.rb |