1
0

tests: class TestCaseForTestnet

This commit is contained in:
SomberNight
2018-04-01 15:50:24 +02:00
parent 08e7a5f05f
commit 1eae16aa3e
2 changed files with 20 additions and 12 deletions

View File

@@ -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()