(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestBugRm(t *testing.T) { |
| 12 | env, bugID := testenv.NewTestEnvAndBug(t) |
| 13 | |
| 14 | exp := "bug " + bugID.Human() + " removed\n" |
| 15 | |
| 16 | require.NoError(t, runBugRm(env, []string{bugID.Human()})) |
| 17 | require.Equal(t, exp, env.Out.String()) |
| 18 | env.Out.Reset() |
| 19 | } |
nothing calls this directly
no test coverage detected