Sha256: f274346672fd7c8bae4f2d7ce5f6ffb18a757cd459bb55012ac9d019b83db5d8
Contents?: true
Size: 447 Bytes
Versions: 19
Compression:
Stored size: 447 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Eucalyptus" do describe ".configure" do let(:access_token) { "123abc" } before do Eucalyptus.configure do |config| config.access_token = access_token end end it "returns a graph object which has the configured access_token" do graph = Eucalyptus.graph expect(graph.access_token).to eql access_token end end end
Version data entries
19 entries across 19 versions & 1 rubygems