(self)
| 26 | cls.site.save() |
| 27 | |
| 28 | def setUp(self): |
| 29 | Site.objects.clear_cache() |
| 30 | self.addCleanup(Site.objects.clear_cache) |
| 31 | |
| 32 | def test_site_manager(self): |
| 33 | # Make sure that get_current() does not return a deleted Site object. |
nothing calls this directly
no test coverage detected