You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- from modules.logs import LogView
-
-
- class TestLogView(object):
-
- def test_get_all_logfiles(self):
-
- LogView._log_directory = "./logs"
-
- log_view = LogView()
- logfiles = log_view.get_all_logfiles()
-
- print(logfiles)
- assert (len(logfiles) == 2)
|