(self)
| 1225 | self.assertEqual(f'v:{value}', 'v:123') |
| 1226 | |
| 1227 | def test_missing_variable(self): |
| 1228 | with self.assertRaises(NameError): |
| 1229 | f'v:{value}' |
| 1230 | |
| 1231 | def test_missing_format_spec(self): |
| 1232 | class O: |
nothing calls this directly
no test coverage detected