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

This commit is contained in:
Steve Moyer 2022-05-28 10:38:04 -04:00
parent ecfffe3902
commit 90208b5f6d
No known key found for this signature in database
GPG Key ID: D8D464C9D22FB8E0

15
commands/rm_test.go Normal file
View File

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