forked from LBRYCommunity/lbry-sdk
moved integration testcase.py into lbrynet so that it can be used from scripts
This commit is contained in:
parent
55e83fe05c
commit
6f76d9e24a
7 changed files with 6 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
|
||||
|
||||
class AccountManagement(CommandTestCase):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
|
||||
|
||||
class EpicAdventuresOfChris45(CommandTestCase):
|
||||
|
|
|
@ -8,7 +8,7 @@ from lbrynet.wallet.transaction import Transaction, Output
|
|||
from torba.client.errors import InsufficientFundsError
|
||||
from lbrynet.schema.compat import OldClaimMessage
|
||||
|
||||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
from torba.client.hash import sha256, Base58
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import asyncio
|
|||
import logging
|
||||
import os
|
||||
|
||||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
from lbrynet.blob_exchange.downloader import BlobDownloader
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import json
|
||||
|
||||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
|
||||
|
||||
class ResolveCommand(CommandTestCase):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from integration.testcase import CommandTestCase
|
||||
from lbrynet.testcase import CommandTestCase
|
||||
|
||||
|
||||
class TransactionCommandsTestCase(CommandTestCase):
|
||||
|
|
Loading…
Reference in a new issue