mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
28 lines
597 B
Python
28 lines
597 B
Python
import unittest
|
|
import os
|
|
import sys
|
|
sys.path.append(os.getcwd())
|
|
from tests import utils_for_test as test_utils
|
|
sys.path.pop()
|
|
print(sys.path)
|
|
|
|
# TODO: Cleanup sys.path so it doesn't keep appending
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
def test_path_list_nodata(self):
|
|
"""
|
|
Test 'path_list' with no data
|
|
"""
|
|
test_utils.run_no_data(self, __file__, [])
|
|
|
|
def test_path_list_all_fixtures(self):
|
|
"""
|
|
Test 'path_list' with various logs
|
|
"""
|
|
test_utils.run_all_fixtures(self, __file__)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|