Remove stray puts.
This commit is contained in:
parent
7f59067226
commit
adecb2c9ad
|
|
@ -104,31 +104,20 @@ describe ApiRecurlyController, :type=>:controller do
|
|||
|
||||
$enable_tracing = true
|
||||
|
||||
post :create_account
|
||||
puts "BACK FROM ACCOUNT: #{response.body}"
|
||||
response.should be_success
|
||||
puts "BACK FROM ACCOUNT 1"
|
||||
body = JSON.parse(response.body)
|
||||
puts "BACK FROM ACCOUNT 2 #{body}"
|
||||
body['first_name'].should eq("Person")
|
||||
|
||||
puts "BACK FROM ACCOUNT 3"
|
||||
|
||||
@billing_info[:state] = "NE"
|
||||
puts "BEFORE BILLING"
|
||||
|
||||
put :update_billing_info, {:format => 'json', :billing_info=>@billing_info}
|
||||
puts "BACK FROM billing 1"
|
||||
|
||||
response.should be_success
|
||||
post :create_account
|
||||
response.should be_success
|
||||
body = JSON.parse(response.body)
|
||||
puts "BILLING_ BODY: #{body}"
|
||||
body['first_name'].should eq("Person")
|
||||
@billing_info[:state] = "NE"
|
||||
|
||||
put :update_billing_info, {:format => 'json', :billing_info=>@billing_info}
|
||||
|
||||
response.should be_success
|
||||
body = JSON.parse(response.body)
|
||||
|
||||
get :billing_info
|
||||
response.should be_success
|
||||
puts "response.body: #{response.body}"
|
||||
body = JSON.parse(response.body)
|
||||
puts "body: #{body}"
|
||||
response.should be_success
|
||||
body = JSON.parse(response.body)
|
||||
end
|
||||
|
||||
end # spec
|
||||
|
|
|
|||
Loading…
Reference in New Issue