1package commands_test
2
3import "testing"
4
5func TestRm(t *testing.T) {
6 testEnv, _, bugID := newTestEnvUserAndBug(t)
7
8 testEnv.cmd.SetArgs([]string{
9 "rm",
10 bugID,
11 })
12
13 testEnv.Execute(t)
14 // TODO: add assertions after #778 is diagnosed and fixed
15}