(self)
| 69 | self.assertFalse(is_valid("(}")) |
| 70 | |
| 71 | def test_simplify_path(self): |
| 72 | p = "/my/name/is/..//keon" |
| 73 | self.assertEqual("/my/name/keon", simplify_path(p)) |
| 74 | |
| 75 | |
| 76 | class TestStack(unittest.TestCase): |
nothing calls this directly
no test coverage detected