()
| 62 | |
| 63 | |
| 64 | def test_expand_tuple(): |
| 65 | assert expand_tuple((2, 4), 2) == (1, 1, 2, 2) |
| 66 | assert expand_tuple((2, 4), 3) == (1, 1, 1, 1, 2) |
| 67 | assert expand_tuple((3, 4), 2) == (1, 2, 2, 2) |
| 68 | assert expand_tuple((7, 4), 3) == (2, 2, 3, 1, 1, 2) |
| 69 | |
| 70 | |
| 71 | def test_contract_tuple(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…