Sha256: 554093bdd74ce084ca489155611e813425347da55b82dcad098a920aaabc2b73

Contents?: true

Size: 1009 Bytes

Versions: 1

Compression:

Stored size: 1009 Bytes

Contents

require 'spec_helper'
require 'lanyrd'

describe Lanyrd::Client do
  before(:each) { @lanyrd = Lanyrd::Client.new }

  it "should search lanyrd" do
    @lanyrd.search('ruby').should be_an_instance_of Hash
  end

  it "should return popular events" do
    @lanyrd.popular.should be_an_instance_of Hash
  end

  it "should return event information" do
    @lanyrd.event('fosdem').should be_an_instance_of Hash
  end

  it "should return event information from the past" do
    @lanyrd.event('bathcamp-32', 2012).should be_an_instance_of Hash
  end

  it "should return speakers for an event" do
    @lanyrd.speakers('fosdem').should be_an_instance_of Hash
  end

  it "should return attendees for an event" do
    @lanyrd.attendees('fosdem').should be_an_instance_of Hash
  end

  it "should return the schedule for an event" do
    @lanyrd.schedule('fosdem').should be_an_instance_of Hash
  end

  it "should return profile for a user" do
    @lanyrd.schedule('teabass').should be_an_instance_of Hash
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lanyrd-0.1.1 spec/client_spec.rb