コード例 #1
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_unspent_test_used(self):
     assert len(BCCBlockAPI.get_unspent_testnet(TEST_ADDRESS_USED2)) >= 194
コード例 #2
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_unspent_test_unused(self):
     assert len(BCCBlockAPI.get_unspent_testnet(TEST_ADDRESS_UNUSED)) == 0
コード例 #3
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_unspent_return_type(self):
     assert iter(BCCBlockAPI.get_unspent(MAIN_ADDRESS_USED1))
コード例 #4
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_unspent_main_unused(self):
     assert len(BCCBlockAPI.get_unspent(MAIN_ADDRESS_UNUSED)) == 0
コード例 #5
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_transactions_main_unused(self):
     assert len(BCCBlockAPI.get_transactions(MAIN_ADDRESS_UNUSED)) == 0
コード例 #6
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_transactions_test_used(self):
     assert len(
         BCCBlockAPI.get_transactions_testnet(TEST_ADDRESS_USED2)) >= 444
コード例 #7
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_transactions_main_used(self):
     assert len(BCCBlockAPI.get_transactions(MAIN_ADDRESS_USED1)) >= 218
コード例 #8
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_transactions_return_type(self):
     assert iter(BCCBlockAPI.get_transactions(MAIN_ADDRESS_USED1))
コード例 #9
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_balance_test_unused(self):
     assert BCCBlockAPI.get_balance_testnet(TEST_ADDRESS_UNUSED) == 0
コード例 #10
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_balance_main_unused(self):
     assert BCCBlockAPI.get_balance(MAIN_ADDRESS_UNUSED) == 0
コード例 #11
0
ファイル: test_services.py プロジェクト: joemarct/bitcash
 def test_get_balance_return_type(self):
     assert isinstance(BCCBlockAPI.get_balance(MAIN_ADDRESS_USED1), int)