| 1796 | |
| 1797 | |
| 1798 | class TestMultiTuple(TraitTestBase): |
| 1799 | obj = MultiTupleTrait() |
| 1800 | |
| 1801 | _default_value = (99, b"bottles") |
| 1802 | _good_values = [(1, b"a"), (2, b"b")] |
| 1803 | _bad_values = ((), 10, b"a", (1, b"a", 3), (b"a", 1), (1, "a")) |
| 1804 | |
| 1805 | |
| 1806 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…