Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I test Paypal Express with ActiveMerchant in a Rails 3.2 app with rspec/capybara integration test?

share|improve this question

1 Answer

You can test by setting:

ActiveMerchant::Billing::Base.mode = :test

PayPal however will require you to enter complete billing information or the API won't even accept it and will return:

Error: There's an error with this transaction. Please enter a complete billing address.

In which case you can supply it with some generic info:

:billing_address => {
    :name     => "Test Person",
    :address1 => "123 W 423 E",
    :city     => "Somewhere",
    :state    => "CA",
    :country  => "US",
    :zip      => "88888"
 }
share|improve this answer
I'm aware of how to activate test mode with the gateway. My question was how I write an automated integration test with rspec/capybara. – RobZolkos Jan 30 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.