A test case for core (which will be ran in main thread)
parent
51df0507e2
commit
a3300ba8f1
@ -0,0 +1,12 @@
|
||||
import unittest
|
||||
|
||||
|
||||
class TestCore(unittest.TestCase):
|
||||
"""Test case, which runs from main pybitmessage thread"""
|
||||
def test_pass(self):
|
||||
pass
|
||||
|
||||
|
||||
def run():
|
||||
suite = unittest.TestLoader().loadTestsFromTestCase(TestCore)
|
||||
return unittest.TextTestRunner(verbosity=2).run(suite)
|
Loading…
Reference in New Issue