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 0000000..6f73279 --- /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") + } + +}