(self, obj, old_key)
| 4 | |
| 5 | class TestCompatibility(SiteTestCase): |
| 6 | def _paths_key_exists(self, obj, old_key): |
| 7 | try: |
| 8 | obj.paths[old_key] |
| 9 | except KeyError: |
| 10 | self.fail('Old key does not exist anymore: {0}'.format(old_key)) |
| 11 | |
| 12 | def test_compatibility(self): |
| 13 | """ |
no test coverage detected