1package cli
2
3import (
4	"testing"
5)
6
7func TestFishCompletion(t *testing.T) {
8	// Given
9	app := testApp()
10
11	// When
12	res, err := app.ToFishCompletion()
13
14	// Then
15	expect(t, err, nil)
16	expectFileContent(t, "testdata/expected-fish-full.fish", res)
17}
18