(self, path)
| 481 | cls.parser.read() |
| 482 | |
| 483 | def url(self, path): |
| 484 | return '{}{}{}'.format( |
| 485 | self.base_url, path, '/' if not os.path.splitext(path)[1] else '' |
| 486 | ) |
| 487 | |
| 488 | def test_basic(self): |
| 489 | self.assertFalse(self.parser.disallow_all) |
no test coverage detected