7506b11da7
This commit adds a new method `ToFishCompletion` to the `*App` which can be used to generate a fish completion string for the application. Relates to: #351 Signed-off-by: Sascha Grunert <sgrunert@suse.com>
18 lines
246 B
Go
18 lines
246 B
Go
package cli
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestFishCompletion(t *testing.T) {
|
|
// Given
|
|
app := testApp()
|
|
|
|
// When
|
|
res, err := app.ToFishCompletion()
|
|
|
|
// Then
|
|
expect(t, err, nil)
|
|
expectFileContent(t, "testdata/expected-fish-full.fish", res)
|
|
}
|