moved integration testcase.py into lbrynet so that it can be used from scripts

This commit is contained in:
Lex Berezhny 2019-02-24 21:48:29 -05:00
parent 55e83fe05c
commit 6f76d9e24a
7 changed files with 6 additions and 7 deletions

View file

@ -1,4 +1,4 @@
from integration.testcase import CommandTestCase from lbrynet.testcase import CommandTestCase
class AccountManagement(CommandTestCase): class AccountManagement(CommandTestCase):

View file

@ -1,4 +1,4 @@
from integration.testcase import CommandTestCase from lbrynet.testcase import CommandTestCase
class EpicAdventuresOfChris45(CommandTestCase): class EpicAdventuresOfChris45(CommandTestCase):

View file

@ -8,7 +8,7 @@ from lbrynet.wallet.transaction import Transaction, Output
from torba.client.errors import InsufficientFundsError from torba.client.errors import InsufficientFundsError
from lbrynet.schema.compat import OldClaimMessage from lbrynet.schema.compat import OldClaimMessage
from integration.testcase import CommandTestCase from lbrynet.testcase import CommandTestCase
from torba.client.hash import sha256, Base58 from torba.client.hash import sha256, Base58

View file

@ -2,7 +2,7 @@ import asyncio
import logging import logging
import os import os
from integration.testcase import CommandTestCase from lbrynet.testcase import CommandTestCase
from lbrynet.blob_exchange.downloader import BlobDownloader from lbrynet.blob_exchange.downloader import BlobDownloader

View file

@ -1,6 +1,5 @@
import json import json
from lbrynet.testcase import CommandTestCase
from integration.testcase import CommandTestCase
class ResolveCommand(CommandTestCase): class ResolveCommand(CommandTestCase):

View file

@ -1,4 +1,4 @@
from integration.testcase import CommandTestCase from lbrynet.testcase import CommandTestCase
class TransactionCommandsTestCase(CommandTestCase): class TransactionCommandsTestCase(CommandTestCase):