diff --git a/src/test/scala/gitbucket/core/service/WebHookJsonFormatSpec.scala b/src/test/scala/gitbucket/core/service/WebHookJsonFormatSpec.scala new file mode 100644 index 000000000..6f7327918 --- /dev/null +++ b/src/test/scala/gitbucket/core/service/WebHookJsonFormatSpec.scala @@ -0,0 +1,38 @@ +package gitbucket.core.service + +import org.json4s.jackson.JsonMethods.parse +import org.json4s._ +import org.scalatest.FunSuite + +class WebHookJsonFormatSpec extends FunSuite { + import gitbucket.core.api.ApiSpecModels._ + + test("WebHookCreatePayload"){ + fail("TODO") + } + + test("WebHookPushPayload"){ + fail("TODO") + } + + test("WebHookIssuesPayload"){ + fail("TODO") + } + + test("WebHookPullRequestPayload"){ + fail("TODO") + } + + test("WebHookIssueCommentPayload"){ + fail("TODO") + } + + test("WebHookPullRequestReviewCommentPayload"){ + fail("TODO") + } + + test("WebHookGollumPayload"){ + fail("TODO") + } + +}