1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/tests/test_path_list.py
Muescha 962632ac1f Feature: generic fixtures tests (#529)
* add generic test runners

* extract generic test runners

* beautify messages, remove unused return value

* add template and info do CONTRIBUTING

* typo

---------

Co-authored-by: Kelly Brazil <kellyjonbrazil@gmail.com>
2024-02-06 01:54:31 +00:00

25 lines
503 B
Python

import unittest
from tests import utils_for_test as test_utils
class MyTests(unittest.TestCase):
def test_path_nodata(self):
"""
Test 'path_list' with no data
"""
# self.assertEqual(parse('', quiet=True), [])
test_utils.run_no_data(self, __file__, [])
def test_all_fixtures(self):
"""
Test 'path_list' with various logs
"""
test_utils.run_all_fixtures(self, __file__)
if __name__ == '__main__':
unittest.main()