(input, expected)
| 73 | ids=["normal", "prefix-strip", "deduplicate"], |
| 74 | ) |
| 75 | def test_plugin_nameversion(input, expected): |
| 76 | pluginlist = [(None, x) for x in input] |
| 77 | result = _plugin_nameversions(pluginlist) |
| 78 | assert result == expected |
| 79 | |
| 80 | |
| 81 | class TestTerminal: |
nothing calls this directly
no test coverage detected