Sha256: fbaaeef6501bb40872497c1250281564966a70179931e84182e3b752e72aec98

Contents?: true

Size: 557 Bytes

Versions: 24

Compression:

Stored size: 557 Bytes

Contents

require 'spec_helper'

describe FbGraph2::Edge::Ratings do
  let(:page) { FbGraph2::Page.new('page_id').authenticate('page_token') }

  describe '#ratings' do
    it 'should return an Array of FbGraph2::Struct::Rating' do
      ratings = mock_graph :get, 'page_id/ratings', 'page/ratings', access_token: 'page_token' do
        page.ratings
      end
      ratings.should be_instance_of FbGraph2::Edge
      ratings.should_not be_blank
      ratings.each do |rating|
        rating.should be_instance_of FbGraph2::Struct::Rating
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
fb_graph2-1.3.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-1.2.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-1.1.1 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-1.1.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-1.0.1 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-1.0.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.9.1 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.9.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.8.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.9 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.8 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.7 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.6 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.5 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.4 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.3 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.2 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.1 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.7.0 spec/fb_graph2/edge/ratings_spec.rb
fb_graph2-0.6.2 spec/fb_graph2/edge/ratings_spec.rb