()
| 21 | |
| 22 | |
| 23 | def test_tuple_from_text(): |
| 24 | assert _tuple_from_text("") == () |
| 25 | assert _tuple_from_text("1") == (1,) |
| 26 | assert _tuple_from_text("1.2") == (1, 2) |
| 27 | assert _tuple_from_text("1.2rc1") == (1, 2) |
| 28 | assert _tuple_from_text("1.2.junk3") == (1, 2) |
| 29 | |
| 30 | |
| 31 | @pytest.mark.skipif( |
nothing calls this directly
no test coverage detected
searching dependent graphs…