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

18 lines
366 B
Python

"""
Tests for core.
"""
import unittest
class TestCore(unittest.TestCase):
"""Test case, which runs from main pybitmessage thread"""
def test_pass(self):
pass
def run():
"""Starts all tests defined in this module"""
suite = unittest.TestLoader().loadTestsFromTestCase(TestCore)
return unittest.TextTestRunner(verbosity=2).run(suite)