diff options
author | ysksn <bluewhale1982@gmail.com> | 2018-12-17 19:32:24 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-17 11:32:24 +0100 |
commit | 3fa9615cb3050a34824f6450ae9de76d6e0e8f6c (patch) | |
tree | e82dadeb571517ab9e54c7ed1fe557efa7456910 /spec | |
parent | 9cb26bb56b6b61e4e8577519347ada40a7751cd6 (diff) |
Add spec for Api::V1::Instances::ActivityController (#9545)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/api/v1/instances/activity_controller_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
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 |