diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-22 20:14:18 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-22 20:14:18 +0200 |
| commit | f306a6b5981f93562f3eed2087ee9c53fb01520b (patch) | |
| tree | e4979125dd9372c5f915d7c098e4fca154e1699a /internal/askcli/dispatch_test.go | |
| parent | 9a6f6c0b747cee47eb61220d94a5fb7aaadd0e2b (diff) | |
Implement 'ask dep add/rm/list' subcommands
Diffstat (limited to 'internal/askcli/dispatch_test.go')
| -rw-r--r-- | internal/askcli/dispatch_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/askcli/dispatch_test.go b/internal/askcli/dispatch_test.go index 8631f4c..0a04490 100644 --- a/internal/askcli/dispatch_test.go +++ b/internal/askcli/dispatch_test.go @@ -70,6 +70,7 @@ func TestDispatcher_AllSubcommandsReachExecutor(t *testing.T) { "done": {"done", "test-uuid"}, "priority": {"priority", "test-uuid", "H"}, "tag": {"tag", "test-uuid", "+cli"}, + "dep": {"dep", "list", "test-uuid"}, } for _, sub := range subcommands { var stdout, stderr bytes.Buffer @@ -79,6 +80,9 @@ func TestDispatcher_AllSubcommandsReachExecutor(t *testing.T) { if args[0] == "export" { io.WriteString(stdout_, "[]") } + if args[0] == "info" { + io.WriteString(stdout_, "[]") + } return 0, nil }}) args := []string{sub} |
