Sha256: f1668181109f2758fd93753e64f68db6e22b8b83483a7b13669d8cbc3dad48f4

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

require './spec/spec_helper'

require 'time'

describe TourOfHome do
  subject do
    TourOfHome.new(
      'ResourceUri'=>"/listings/20060725224713296297000000/tourofhomes/20101127153422574618000000",
      'Id'=>"20101127153422574618000000",
      'Date'=>"10/01/2010",
      'StartTime'=>"09:00:00-07:00",
      'EndTime'=>"23:00:00-07:00",
      'Comments'=>"Wonderful home; must see!",
      'AdditionalInfo'=> [{"Hosted By"=>"Joe Smith"}, {"Host Phone"=>"123-456-7890"}, {"Tour Area"=>"North-Central"}]
    )
  end

  it "should respond to a few methods" do
    subject.class.should respond_to(:find_by_listing_key)
  end
  it "should return tour date and times" do
    start_time = DateTime.new(2010,10,1,9,0,0, "-0700")
    end_time = DateTime.new(2010,10,1,23,0,0, "-0700")
    subject.Date.should eq(Date.new(2010,10,1))
    subject.StartTime.should eq(Time.parse(start_time.to_s))
    subject.EndTime.should eq(Time.parse(end_time.to_s))
  end

  it "should get home tours for a listing" do
    stub_auth_request
    stub_api_get('/listings/20060725224713296297000000/tourofhomes','listings/tour_of_homes.json')
    v = subject.class.find_by_listing_key('20060725224713296297000000')
    v.should be_an(Array)
    v.length.should == 2
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
flexmls_api-0.7.3 spec/unit/flexmls_api/models/tour_of_home_spec.rb
flexmls_api-0.7.5 spec/unit/flexmls_api/models/tour_of_home_spec.rb
flexmls_api-0.7.0 spec/unit/flexmls_api/models/tour_of_home_spec.rb