2024-01-31 05:04:55 +01:00
|
|
|
import unittest
|
|
|
|
|
2024-02-04 21:02:35 +01:00
|
|
|
from tests import utils_for_test as test_utils
|
2024-01-31 05:04:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_path_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'path' with no data
|
|
|
|
"""
|
2024-02-04 21:02:35 +01:00
|
|
|
test_utils.run_no_data(self, __file__, {})
|
2024-01-31 05:04:55 +01:00
|
|
|
|
2024-02-04 21:02:35 +01:00
|
|
|
def test_all_fixtures(self):
|
2024-01-31 05:04:55 +01:00
|
|
|
"""
|
|
|
|
Test 'path' with various logs
|
|
|
|
"""
|
2024-02-04 21:02:35 +01:00
|
|
|
test_utils.run_all_fixtures(self, __file__)
|
2024-01-31 05:04:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|