Sha256: 8133c5922eed386c7b94d5b655d97e76df0fb1c81a54de09ffbb7956f4bf1f9b
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
require './spec/spec_helper' describe SharedListing do before(:each) do stub_auth_request end it "should respond to the finders" do SharedListing.should respond_to(:find) end context "/sharedlistings", :support do on_post_it "should create shared listings" do stub_api_post("/#{subject.class.element_name}", 'listings/shared_listing_new.json', 'listings/shared_listing_post.json') subject.ListingIds = ["20110224152431857619000000","20110125122333785431000000"] subject.ViewId = "20080125122333787615000000" subject.save.should be(true) subject.ResourceUri.should eq("http://www.flexmls.com/share/15Ar/3544-N-Olsen-Avenue-Tucson-AZ-85719") end on_post_it "should fail creating" do stub_api_post("/#{subject.class.element_name}",{}) do |request| request.to_return(:status => 400, :body => fixture('errors/failure.json')) end subject subject.save.should be(false) expect{ subject.save! }.to raise_error(SparkApi::ClientError){ |e| e.status.should == 400 } end end context "/sharedlistings/<shared_listing_id>", :support do on_get_it "should get shared listing" do shared_id = '15Ar' stub_api_get("/#{subject.class.element_name}/#{shared_id}", 'listings/shared_listing_get.json') shared = SharedListing.find(shared_id) shared.should respond_to('SharedUri') shared.Mode.should eq('Public') shared.ListingIds.should be_an(Array) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spark_api-1.2.1 | spec/unit/spark_api/models/shared_listing_spec.rb |
spark_api-1.2.0 | spec/unit/spark_api/models/shared_listing_spec.rb |