Sha256: 83041a4529d8654c2cff7d03fd46c22562ae57995ab5f16be0a652ff1b42384c

Contents?: true

Size: 1.73 KB

Versions: 5

Compression:

Stored size: 1.73 KB

Contents

require 'spec_helper'

describe Eventbrite::Api::Model::OwnedEventAttendee do

  let(:consumer) { {key: 'key', secret: 'secret'} }
  let(:params) { {consumer: consumer, access_token: 'access_token'} }

  subject { Eventbrite::Api::Client.new(params) }
  
  describe ".owned_event_attendees.get" do 
    let(:owned_event_attendees_response) { File.read('spec/fixtures/users/133925426255/owned_event_attendees.json') }

    before { stub_request(:get, "https://www.eventbriteapi.com/v3/users/133925426255/owned_event_attendees").to_return(:status => 200, :body => owned_event_attendees_response, :headers => {}) }
    
    it "fetches the list of owned event attendees" do
      expect(subject.owned_event_attendee.get({'user_id'=>'133925426255'})).to eql(JSON.parse(owned_event_attendees_response))
    end
  end

  describe ".owned_event_attendees.all" do 
    before { stub_request(:get, "https://www.eventbriteapi.com/v3/users/133925426255/owned_event_attendees")
              .to_return({:status => 200, :body => File.read('spec/fixtures/owned_event_attendees/page1.json'), :headers => {}}) }
    before { stub_request(:get, "https://www.eventbriteapi.com/v3/users/133925426255/owned_event_attendees?page=2")
              .to_return({:status => 200, :body => File.read('spec/fixtures/owned_event_attendees/page2.json'), :headers => {}}) }
    before { stub_request(:get, "https://www.eventbriteapi.com/v3/users/133925426255/owned_event_attendees?page=3")
              .to_return({:status => 200, :body => File.read('spec/fixtures/owned_event_attendees/page3.json'), :headers => {}}) }

    it "fetches the list of owned event attendees" do
      expect(subject.owned_event_attendee.all({'user_id'=>'133925426255'})['attendees'].count).to eql(139)
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
eventbrite-api-v3-0.0.7 spec/eventbrite/api/model/owned_event_attendee_spec.rb
eventbrite-api-v3-0.0.6 spec/eventbrite/api/model/owned_event_attendee_spec.rb
eventbrite-api-v3-0.0.5 spec/eventbrite/api/model/owned_event_attendee_spec.rb
eventbrite-api-0.0.4 spec/eventbrite/api/model/owned_event_attendee_spec.rb
eventbrite-api-0.0.3 spec/eventbrite/api/model/owned_event_attendee_spec.rb