(input, expected)
| 80 | ids=["normal", "prefix-strip", "deduplicate"], |
| 81 | ) |
| 82 | def test_plugin_nameversion(input, expected): |
| 83 | pluginlist = [(None, x) for x in input] |
| 84 | result = _plugin_nameversions(pluginlist) |
| 85 | assert result == expected |
| 86 | |
| 87 | |
| 88 | class TestTerminal: |
nothing calls this directly
no test coverage detected