(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func TestBugComment(t *testing.T) { |
| 18 | const golden = "testdata/comment/message-only" |
| 19 | |
| 20 | env, bug := testenv.NewTestEnvAndBug(t) |
| 21 | |
| 22 | require.NoError(t, runBugComment(env, []string{bug.Human()})) |
| 23 | |
| 24 | requireCommentsEqual(t, golden, env) |
| 25 | } |
| 26 | |
| 27 | const gitDateFormat = "Mon Jan 2 15:04:05 2006 -0700" |
| 28 |
nothing calls this directly
no test coverage detected