From: ysksn Date: Mon, 17 Dec 2018 10:32:24 +0000 (+0900) Subject: Add spec for Api::V1::Instances::ActivityController (#9545) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=3fa9615cb3050a34824f6450ae9de76d6e0e8f6c;p=mastodon.git Add spec for Api::V1::Instances::ActivityController (#9545) --- diff --git a/spec/controllers/api/v1/instances/activity_controller_spec.rb b/spec/controllers/api/v1/instances/activity_controller_spec.rb new file mode 100644 index 000000000..159792ee0 --- /dev/null +++ b/spec/controllers/api/v1/instances/activity_controller_spec.rb @@ -0,0 +1,21 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Api::V1::Instances::ActivityController, type: :controller do + describe 'GET #show' do + it 'returns 200' do + get :show + expect(response).to have_http_status(200) + end + + context '!Setting.activity_api_enabled' do + it 'returns 404' do + Setting.activity_api_enabled = false + + get :show + expect(response).to have_http_status(404) + end + end + end +end