spec/call_resource_spec.rb in chargify2-0.2.2 vs spec/call_resource_spec.rb in chargify2-0.2.4

- old
+ new

@@ -10,10 +10,12 @@ CallResource.representation.should == Call end describe "#read" do it "performs a GET request to 'https://api.chargify.com/api/v2/calls/123' (without authentication) when called with '123'" do + # What is this 'a_request' method? + pending 'Rewrite this test.' WebMock.stub_request(:get, 'https://api.chargify.com/api/v2/calls/123') CallResource.read('123') a_request(:get, 'https://api.chargify.com/api/v2/calls/123').should have_been_made.once end @@ -36,10 +38,12 @@ @client = Client.new(valid_client_credentials) @call_resource = CallResource.new(@client) end it "performs a GET request to 'https://<api_login>:<api_password>@api.chargify.com/api/v2/calls/123' (with authentication) when called with '123'" do + # What is this 'a_request' method? + pending 'Rewrite this test.' WebMock.stub_request(:get, "https://#{@client.api_id}:#{@client.api_password}@api.chargify.com/api/v2/calls/123") CallResource.read('123') a_request(:get, "https://#{@client.api_id}:#{@client.api_password}@api.chargify.com/api/v2/calls/123").should have_been_made.once end @@ -47,6 +51,6 @@ WebMock.stub_request(:get, "https://#{@client.api_id}:#{@client.api_password}@api.chargify.com/api/v2/calls/123") CallResource.read('123').should be_a(Call) end end end -end \ No newline at end of file +end