()
| 102 | |
| 103 | @patch.object(Something, 'attribute', sentinel.Patched) |
| 104 | def test(): |
| 105 | self.assertEqual(Something.attribute, sentinel.Patched, "unpatched") |
| 106 | |
| 107 | test() |
| 108 | self.assertEqual(Something.attribute, sentinel.Original, |
nothing calls this directly
no test coverage detected