(self)
| 78 | self.assertEqual(result, expected) |
| 79 | |
| 80 | def test_relative_path(self): |
| 81 | output = create_file_basename("", "test.txt", "output", "", makedirs=False) |
| 82 | expected = os.path.join("output", "test", "test") |
| 83 | self.assertEqual(output, expected) |
| 84 | |
| 85 | |
| 86 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected