mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
23 lines
443 B
Python
23 lines
443 B
Python
import unittest
|
|
|
|
from tests import utils_for_test as test_utils
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
def test_path_nodata(self):
|
|
"""
|
|
Test 'path' with no data
|
|
"""
|
|
test_utils.run_no_data(self, __file__, {})
|
|
|
|
def test_path_all_fixtures(self):
|
|
"""
|
|
Test 'path' with various logs
|
|
"""
|
|
test_utils.run_all_fixtures(self, __file__)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|