tests: class TestCaseForTestnet
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import unittest
|
||||
|
||||
from lib import constants
|
||||
|
||||
|
||||
class TestCaseForTestnet(unittest.TestCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
constants.set_testnet()
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
super().tearDownClass()
|
||||
constants.set_mainnet()
|
||||
|
||||
Reference in New Issue
Block a user