This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-02/src/tests/core.py

13 lines
291 B
Python
Raw Normal View History

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)