1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/tests/test_path.py

25 lines
506 B
Python
Raw Normal View History

import unittest
2024-03-14 17:29:31 -07:00
import os
import sys
sys.path.append(os.getcwd())
from tests import utils_for_test as test_utils
2024-03-14 17:29:31 -07:00
sys.path.pop()
class MyTests(unittest.TestCase):
def test_path_nodata(self):
"""
Test 'path' with no data
"""
test_utils.run_no_data(self, __file__, {})
2024-02-04 12:15:46 -08:00
def test_path_all_fixtures(self):
"""
Test 'path' with various logs
"""
test_utils.run_all_fixtures(self, __file__)
if __name__ == '__main__':
unittest.main()