From 2c2a32e140994bcfa3cee7f95cb7ed619e8c08c3 Mon Sep 17 00:00:00 2001 From: Steven Miers Date: Sat, 3 Jan 2015 11:42:47 -0600 Subject: [PATCH] Remove stray puts. --- web/spec/controllers/api_recurly_spec.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/web/spec/controllers/api_recurly_spec.rb b/web/spec/controllers/api_recurly_spec.rb index aec34e3b7..35be476e5 100644 --- a/web/spec/controllers/api_recurly_spec.rb +++ b/web/spec/controllers/api_recurly_spec.rb @@ -42,7 +42,6 @@ describe ApiRecurlyController, :type=>:controller do post :create_account, {:format => 'json', :billing_info=>@billing_info} response.status.should == 404 body = JSON.parse(response.body) - puts "body.inspect: #{body.inspect}" body['errors'].should have(1).items body['errors']['number'].should_not be_nil end @@ -59,7 +58,6 @@ describe ApiRecurlyController, :type=>:controller do get :get_account body = JSON.parse(response.body) response.should be_success - puts "body: #{body}" body['email'].should eq(@user.email) end @@ -86,13 +84,10 @@ describe ApiRecurlyController, :type=>:controller do pending "We don't have any subscriptions yet -- uncomment in routes" get :get_subscription, { :format => 'json'} response.should be_success - body = JSON.parse(response.body) - puts body + body = JSON.parse(response.body) end it "should update billing info" do - #pending "this fails in the controller spec only, possibly because it contacts an external site." - # $enable_tracing = false # $trace_out = open('trace.txt', 'w')