mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
13 lines
230 B
Ruby
13 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
module DiscourseSubscriptions
|
|
RSpec.describe HooksController do
|
|
it "responds ok" do
|
|
post "/s/hooks.json"
|
|
expect(response.status).to eq 200
|
|
end
|
|
end
|
|
end
|