aboutsummaryrefslogtreecommitdiffstats
path: root/commands/rm_test.go
blob: e8b53057c924d1a00ce689d00fe275db0fdf8f04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}