blob: 4e367bad4d777bcdc44d66b649e05c3470e3539f (
plain)
1
2
3
4
5
6
7
8
9
|
require "test_helper"
class GithubsControllerTest < ActionDispatch::IntegrationTest
test "accepts a new app installation webhook" do
post '/github', params: JSON.parse(file_fixture("webhooks/app.json").read)
assert_response :no_content
end
end
|