-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added a test and removed the code to only test a specific file becaus…
…e that code did not work
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import unittest | ||
import os | ||
|
||
class TestPaths(unittest.TestCase): | ||
def test_path_exists(self): | ||
# test that the path results exists | ||
self.assertTrue(os.path.exists('results')) | ||
|
||
def test_results_directory_is_not_empty(self): | ||
# test that the results directory is not empty | ||
self.assertGreater(len(os.listdir('results')), 0) | ||
|
||
def test_results_contain_json_files(self): | ||
# test that the results director contains json files in the sub directores | ||
# get a list of all the subdirectories | ||
subdirectories = [x[0] for x in os.walk('results')] | ||
# check if the subdirectories contain json files. only check one subdirectory | ||
subdirectory = subdirectories[1] | ||
self.assertGreater(len(os.listdir(subdirectory)), 0) |