2018-04-16 20:19:30 +02:00
|
|
|
"""
|
|
|
|
Tests for core.
|
|
|
|
"""
|
|
|
|
|
2018-04-16 10:26:52 +02:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class TestCore(unittest.TestCase):
|
|
|
|
"""Test case, which runs from main pybitmessage thread"""
|
|
|
|
def test_pass(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def run():
|
2018-04-16 20:19:30 +02:00
|
|
|
"""Starts all tests defined in this module"""
|
2018-04-16 10:26:52 +02:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestCore)
|
|
|
|
return unittest.TextTestRunner(verbosity=2).run(suite)
|