aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/rm_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/commands/rm_test.go b/commands/rm_test.go
new file mode 100644
index 00000000..e8b53057
--- /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
+}