Respond 200 when receiving a ping event. (#2492)

This commit is contained in:
François de Metz
2017-03-06 12:34:41 +00:00
committed by Cameron Sparr
parent 10744646db
commit 76bcdecd21
2 changed files with 10 additions and 3 deletions

View File

@@ -25,6 +25,10 @@ func TestCommitCommentEvent(t *testing.T) {
GithubWebhookRequest("commit_comment", CommitCommentEventJSON(), t)
}
func TestPingEvent(t *testing.T) {
GithubWebhookRequest("ping", "", t)
}
func TestDeleteEvent(t *testing.T) {
GithubWebhookRequest("delete", DeleteEventJSON(), t)
}