mirror of
https://github.com/rclone/rclone.git
synced 2025-12-11 22:14:05 +01:00
genautocomplete: add support for fish shell
This commit is contained in:
committed by
Nick Craig-Wood
parent
3b4c24af4e
commit
22f06590f7
@@ -33,3 +33,16 @@ func TestCompletionZsh(t *testing.T) {
|
||||
assert.NoError(t, err)
|
||||
assert.NotEmpty(t, string(bs))
|
||||
}
|
||||
|
||||
func TestCompletionFish(t *testing.T) {
|
||||
tempFile, err := ioutil.TempFile("", "completion_fish")
|
||||
assert.NoError(t, err)
|
||||
defer func() { _ = tempFile.Close() }()
|
||||
defer func() { _ = os.Remove(tempFile.Name()) }()
|
||||
|
||||
fishCommandDefinition.Run(fishCommandDefinition, []string{tempFile.Name()})
|
||||
|
||||
bs, err := ioutil.ReadFile(tempFile.Name())
|
||||
assert.NoError(t, err)
|
||||
assert.NotEmpty(t, string(bs))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user