(info)
| 100 | ], |
| 101 | ) |
| 102 | def test_version_empty(info): |
| 103 | with pytest.raises(ValueError, match="Version is empty"): |
| 104 | get_name_version(info) |
| 105 | |
| 106 | |
| 107 | @pytest.mark.parametrize("version_in", ["x", ".", " ", "hello"]) |
nothing calls this directly
no test coverage detected