()
| 19 | |
| 20 | |
| 21 | def test_named(): |
| 22 | # pull a named string out of another string |
| 23 | _test_expression("{name}", r"(?P<name>.+?)") |
| 24 | _test_expression("{name} {other}", r"(?P<name>.+?) (?P<other>.+?)") |
| 25 | |
| 26 | |
| 27 | def test_named_typed(): |
nothing calls this directly
no test coverage detected