Sha256: fbf754c45812577e02a62be87ceb5b5b7d099b066e5a8ce0e1110dd457951440

Contents?: true

Size: 1.33 KB

Versions: 7

Compression:

Stored size: 1.33 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe Eucalyptus::Account do
  let(:account) { Eucalyptus::Account.all.last }

  describe '#insights' do
    it 'returns an array of insights for the account' do
      VCR.use_cassette("account_insights") do
        expect(account.insights).to be_a Eucalyptus::ResponseCollection
        expect(account.insights.first).to be_a Eucalyptus::Insight
      end
    end
  end

  describe '#ads' do
    it 'returns a collection of Ad objects which belong to the account' do
      VCR.use_cassette("account_ads") do
        expect(account.ads).to be_a Eucalyptus::ResponseCollection
        expect(account.ads.first).to be_a Eucalyptus::Ad
      end
    end
  end

  describe '#ad_sets' do
    it 'returns a collection of AdSet objects which belong to the account' do
      VCR.use_cassette("account_ad_sets") do
        expect(account.ad_sets).to be_a Eucalyptus::ResponseCollection
        expect(account.ad_sets.first).to be_a Eucalyptus::AdSet
      end
    end
  end

  describe '#campaigns' do
    it 'returns a collection of Campaign objects which belong to the account' do
      VCR.use_cassette("account_campaigns") do
        expect(account.campaigns).to be_a Eucalyptus::ResponseCollection
        expect(account.campaigns.first).to be_a Eucalyptus::Campaign
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
eucalyptus-1.2.4 spec/eucalyptus/account_spec.rb
eucalyptus-1.2.3 spec/eucalyptus/account_spec.rb
eucalyptus-1.2.2 spec/eucalyptus/account_spec.rb
eucalyptus-1.2.1 spec/eucalyptus/account_spec.rb
eucalyptus-1.2.0 spec/eucalyptus/account_spec.rb
eucalyptus-1.1.0 spec/eucalyptus/account_spec.rb
eucalyptus-1.0.0 spec/eucalyptus/account_spec.rb