spec/api-client/collection_spec.rb in api-client-1.10.0 vs spec/api-client/collection_spec.rb in api-client-2.0.0.rc1

- old
+ new

@@ -2,12 +2,12 @@ describe ApiClient::Collection do let(:user) { User.new } before :each do - stub_request(:get, "http://api.example.com").to_return(:body => [ {"a" => "b"}, {"a" => "b2"} ].to_json) + stub_request(:get, "http://api.example.com/users").to_return(:body => [ {"a" => "b"}, {"a" => "b2"} ].to_json) User.stub(:new => user) - @collection = ApiClient::Collection.new(User, "http://api.example.com") + @collection = ApiClient::Collection.new(User, "users") end it "should include enumerable module" do @collection.should respond_to(:first) end \ No newline at end of file