Sha256: dceae6396549ebbc3a37fb63b68c6f255bbc037fe95635fec7ec6993ddc58833
Contents?: true
Size: 615 Bytes
Versions: 59
Compression:
Stored size: 615 Bytes
Contents
module FbGraph module Connections module TestUsers def test_users(options = {}) options[:access_token] ||= self.access_token test_users = self.connection :accounts, options.merge(:connection_scope => 'test-users') test_users.map! do |test_user| TestUser.new test_user[:id], test_user end end def test_user!(options = {}) options[:access_token] ||= self.access_token test_user = post options.merge(:connection => :accounts, :connection_scope => 'test-users') TestUser.new test_user[:id], test_user end end end end
Version data entries
59 entries across 59 versions & 1 rubygems