(self)
| 338 | self.checkError([opt], 'expected one argument') |
| 339 | |
| 340 | def test_testdir(self): |
| 341 | ns = self.parse_args(['--testdir', 'foo']) |
| 342 | self.assertEqual(ns.testdir, os.path.join(os_helper.SAVEDCWD, 'foo')) |
| 343 | self.checkError(['--testdir'], 'expected one argument') |
| 344 | |
| 345 | def test_runleaks(self): |
| 346 | for opt in '-L', '--runleaks': |
nothing calls this directly
no test coverage detected