(self)
| 1237 | self.assertEqual(f'v:{value}', 'v:123') |
| 1238 | |
| 1239 | def test_missing_variable(self): |
| 1240 | with self.assertRaises(NameError): |
| 1241 | f'v:{value}' |
| 1242 | |
| 1243 | def test_missing_format_spec(self): |
| 1244 | class O: |
nothing calls this directly
no test coverage detected