test(778): execute rm bug in testEnv (hangs)

Steve Moyer created

Change summary

commands/rm_test.go | 15 +++++++++++++++
1 file changed, 15 insertions(+)

Detailed changes

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
+}