(self, val)
| 603 | |
| 604 | class MediaURLStaticURLPrefixTest(SimpleTestCase): |
| 605 | def set_script_name(self, val): |
| 606 | clear_script_prefix() |
| 607 | if val is not None: |
| 608 | set_script_prefix(val) |
| 609 | |
| 610 | def test_not_prefixed(self): |
| 611 | # Don't add SCRIPT_NAME prefix to absolute paths, URLs, or None. |
no test coverage detected