(self)
| 666 | self.assertFalse(bool(selection_2)) |
| 667 | |
| 668 | def test_selection_get(self): |
| 669 | self.assertEqual( |
| 670 | pz.select(make_example_object()).at(lambda root: root['c'][0]).get(), |
| 671 | {'value': CustomLeaf(tag=12)}, |
| 672 | ) |
| 673 | |
| 674 | def test_selection_get_sequence(self): |
| 675 | self.assertEqual( |
nothing calls this directly
no test coverage detected