From 90208b5f6dc13cafc088862fcf5e7f961e119f27 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Sat, 28 May 2022 10:38:04 -0400 Subject: [PATCH] test(778): execute rm bug in testEnv (hangs) --- commands/rm_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 commands/rm_test.go 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 +}