diff --git a/commands/rm_test.go b/commands/rm_test.go new file mode 100644 index 0000000000000000000000000000000000000000..e8b53057c924d1a00ce689d00fe275db0fdf8f04 --- /dev/null +++ b/commands/rm_test.go @@ -0,0 +1,15 @@ +package commands_test + +import "testing" + +func TestRm(t *testing.T) { + testEnv, _, bugID := newTestEnvUserAndBug(t) + + testEnv.cmd.SetArgs([]string{ + "rm", + bugID, + }) + + testEnv.Execute(t) + // TODO: add assertions after #778 is diagnosed and fixed +}