Amit Attri
Amit Attri

Reputation: 277

Setting up a dummy payment gateway for testing in rails

I am new to the rails world and am in the process of setting up a small rails app for a client. One of the requirements is that I want to set a payment system for test purpose .

Upvotes: 2

Views: 285

Answers (1)

crhntr
crhntr

Reputation: 43

For something quick, I would use Stripe. It has minimal backend setup, a gem, and (if you are into TDD) is easy to create tests with using given test card data.

gem install stripe

Upvotes: 2

Related Questions