18 lines
366 B
Python
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)
|