(benchmark)
| 207 | |
| 208 | |
| 209 | def test_replace_multiline_uid(benchmark): |
| 210 | def inner(): |
| 211 | return vobject.Item(complex_uid_item).with_uid('a').uid |
| 212 | |
| 213 | assert benchmark(inner) == 'a' |
| 214 | |
| 215 | |
| 216 | @pytest.mark.parametrize('template', [EVENT_TEMPLATE, |
nothing calls this directly
no test coverage detected