def test_create_card_with_data(self):
     card = Card(api_key='api_key',
                 card_number='4111111111111111',
                 expiration_date=1215,
                 holder_name='Test User')
     card.create()
Beispiel #2
0
 def test_create_card_with_data(self):
     card = Card(api_key='api_key', card_number='4111111111111111', expiration_date=1215, holder_name='Test User')
     card.create()
 def test_create_card(self):
     card = Card(api_key='api_key', card_hash='hashcardlong')
     card.create()
Beispiel #4
0
 def test_create_card(self):
     card = Card(api_key='api_key', card_hash='hashcardlong')
     card.create()