(self)
| 3114 | self.assertIsNot(c[0], c[1]) |
| 3115 | |
| 3116 | def test_nonexistent_alias(self): |
| 3117 | msg = "The connection 'nonexistent' doesn't exist." |
| 3118 | with self.assertRaisesMessage(InvalidCacheBackendError, msg): |
| 3119 | caches["nonexistent"] |
| 3120 | |
| 3121 | def test_nonexistent_backend(self): |
| 3122 | test_caches = CacheHandler( |
nothing calls this directly
no test coverage detected