c44c489ca5
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)
|
|||
}
|