mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
16 lines
250 B
Go
16 lines
250 B
Go
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
|
|
}
|