File tree Expand file tree Collapse file tree 7 files changed +1
-35
lines changed Expand file tree Collapse file tree 7 files changed +1
-35
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88from bunq .sdk .exception import BunqException
99from bunq .sdk .model .generated import endpoint
1010from bunq .sdk .model .generated import object_
11- from tests import config
12-
1311
1412class BunqSdkTestCase (unittest .TestCase ):
1513 """
1614 :type _second_monetary_account: endpoint.MonetaryAccountBank
1715 :type _cash_register: endpoint.CashRegister
1816 """
1917
18+ # Error constants.
2019 __ERROR_COULD_NOT_DETERMINE_USER = 'Could not determine user alias.'
2120
22- # Config values
23- _API_KEY = config .Config .get_api_key ()
24-
2521 # Name of bunq config file
2622 _FILENAME_BUNQ_CONFIG = "/bunq-test.conf"
2723
Original file line number Diff line number Diff line change 44from bunq .sdk .model .generated import endpoint
55from bunq .sdk .model .generated import object_
66from tests .bunq_test import BunqSdkTestCase
7- from tests .config import Config
87
98
109class TestPaginationScenario (BunqSdkTestCase ):
@@ -15,8 +14,6 @@ class TestPaginationScenario(BunqSdkTestCase):
1514
1615 @classmethod
1716 def setUpClass (cls ):
18- cls ._USER_ID = Config .get_user_id ()
19- cls ._MONETARY_ACCOUNT_ID = Config .get_monetary_account_id_1 ()
2017 cls ._PAYMENT_LISTING_PAGE_SIZE = 2
2118 cls ._PAYMENT_REQUIRED_COUNT_MINIMUM = cls ._PAYMENT_LISTING_PAGE_SIZE * 2
2219 cls ._NUMBER_ZERO = 0
Original file line number Diff line number Diff line change 99from bunq .sdk .model .generated .object_ import CardPinAssignment
1010from bunq .sdk .model .generated .object_ import Pointer
1111from tests .bunq_test import BunqSdkTestCase
12- from tests .config import Config
1312
1413
1514class TestCardDebit (BunqSdkTestCase ):
Original file line number Diff line number Diff line change 88from bunq .sdk .model .generated .object_ import ShareDetail
99from bunq .sdk .model .generated .object_ import ShareDetailReadOnly
1010from tests .bunq_test import BunqSdkTestCase
11- from tests .config import Config
1211
1312
1413class TestDraftShareInvite (BunqSdkTestCase ):
Original file line number Diff line number Diff line change 33from bunq .sdk .context import BunqContext
44from bunq .sdk .model .generated .endpoint import MonetaryAccountBank
55from tests .bunq_test import BunqSdkTestCase
6- from tests .config import Config
76
87
98class TestMonetaryAccount (BunqSdkTestCase ):
Original file line number Diff line number Diff line change 22from bunq .sdk .model .generated .endpoint import RequestResponse
33from bunq .sdk .model .generated .object_ import Amount
44from tests .bunq_test import BunqSdkTestCase
5- from tests .config import Config
65
76
87class TestRequestEnquiry (BunqSdkTestCase ):
You can’t perform that action at this time.
0 commit comments