Sha256: e5ab5a575b109b40f64abfb821ded639db331ef3926acb8df356a5b0ea9ae2cf
Contents?: true
Size: 571 Bytes
Versions: 26
Compression:
Stored size: 571 Bytes
Contents
require 'spec_helper' describe FbGraph2::Edge::Applications do context 'included in User' do let(:me) { FbGraph2::User.me('token') } describe '#applications' do it 'should return an Array of FbGraph2::App' do apps = mock_graph :get, 'me/applications/developer', 'user/applications', access_token: 'token' do me.applications end apps.should be_instance_of FbGraph2::Edge apps.should_not be_blank apps.each do |app| app.should be_instance_of FbGraph2::App end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems