diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-05-28 10:38:04 -0400 |
---|---|---|
committer | Steve Moyer <smoyer1@selesy.com> | 2022-05-28 10:38:04 -0400 |
commit | 90208b5f6dc13cafc088862fcf5e7f961e119f27 (patch) | |
tree | 4973a22181ecd1db2c06f2a84ddc8e2d1ace2006 /commands | |
parent | ecfffe3902731224288add3b44119dccae46fd6f (diff) | |
download | git-bug-90208b5f6dc13cafc088862fcf5e7f961e119f27.tar.gz |
test(778): execute rm bug in testEnv (hangs)
Diffstat (limited to 'commands')
-rw-r--r-- | commands/rm_test.go | 15 |
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 +} |