public
Fork of Shopify/active_merchant
Description: Active Merchant is a simple payment abstraction library used in and sponsored by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.
Homepage: http://activemerchant.org
Clone URL: git://github.com/econsultancy/active_merchant.git
Replaced mastercard magic number which was no longer working
mocoso (author)
Fri Aug 29 09:43:54 -0700 2008
tomstuart (committer)
Fri Sep 05 08:14:03 -0700 2008
commit  fef8573cf67856099e34c40a5310c850fec3db05
tree    12c84517f7bc4e62e46e66a09a0b07a135f64391
parent  fd2b40689bb02b44d1f526f8e190e885be1e432d
...
8
9
10
11
 
12
13
14
15
16
17
 
18
19
20
...
8
9
10
 
11
12
13
14
15
16
 
17
18
19
20
0
@@ -8,13 +8,13 @@ class RemoteDataCashTest < Test::Unit::TestCase
0
     @gateway = DataCashGateway.new(fixtures(:data_cash))
0
 
0
     @mastercard = CreditCard.new(
0
- :number => '5473000000000007',
0
+ :number => '1000011000000005',
0
       :month => 3,
0
       :year => Date.today.year + 2,
0
       :first_name => 'Mark',
0
       :last_name => 'McBride',
0
       :type => :master,
0
- :verification_value => '547'
0
+ :verification_value => '444'
0
     )
0
 
0
     @mastercard_declined = CreditCard.new(

Comments

    No one has commented yet.