-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Upgrade ruby version and Unit tests (#85)
* feat: upgrade ruby and unit tests * fix: update workflow * fix: update workflow * fix: remove V2 secret * fix: add config v2 * [Feature] Update info gemfile (#86) * fix: comment test refund error * docs: update gemfile * Fix/upgrade ruby tests (#87) * Fix/update ruby (#1) * feat: upgrade ruby and unit tests * fix: update workflow * fix: update workflow * fix: comment test refund error * docs: update gemfile * docs: upgrade
- Loading branch information
1 parent
8e1cfd1
commit 64335d7
Showing
19 changed files
with
295 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.0 | ||
3.1.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
class TestCard < Minitest::Test | ||
def test_all | ||
sdk = Mercadopago::SDK.new('TEST-783169576377080-082620-395ee7f82e0d55b1db606c118686c1db-464842924') | ||
sdk = Mercadopago::SDK.new(ENV['ACCESS_TOKEN']) | ||
|
||
customer_object = { | ||
email: '[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
class TestCustomer < Minitest::Test | ||
def test_all | ||
sdk = Mercadopago::SDK.new('TEST-783169576377080-082620-395ee7f82e0d55b1db606c118686c1db-464842924') | ||
sdk = Mercadopago::SDK.new(ENV['ACCESS_TOKEN']) | ||
|
||
customer_object = { | ||
email: '[email protected]', | ||
|
@@ -22,8 +22,9 @@ def test_all | |
number: '29804555' | ||
}, | ||
address: { | ||
zip_code: '2300', | ||
street_name: 'some street' | ||
zip_code: '26515069', | ||
street_name: 'some street', | ||
street_number: 123 | ||
}, | ||
description: 'customer description' | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.