()
| 330 | |
| 331 | |
| 332 | def test_pattern_fix_identities_2(): |
| 333 | pattern = Required(Optional(Argument('X'), Argument('N')), Argument('N')) |
| 334 | assert pattern.children[0].children[1] == pattern.children[1] |
| 335 | assert pattern.children[0].children[1] is not pattern.children[1] |
| 336 | pattern.fix_identities() |
| 337 | assert pattern.children[0].children[1] is pattern.children[1] |
| 338 | |
| 339 | |
| 340 | def test_long_options_error_handling(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…