about summary refs log tree commit diff
path: root/spec/controllers
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-17 19:35:55 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-17 11:35:55 +0100
commit351938520d5e5e8792772fd5f8ad30ba3e11639c (patch)
tree63f5471bd359a906eb5cfaa03fdd58d77e628e04 /spec/controllers
parent2d871feb10e42becb9248e44e108ebcc93b671fe (diff)
Add specs for Api::V1::Instances::PeersController (#9546)
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/api/v1/instances/peers_controller_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/instances/peers_controller_spec.rb b/spec/controllers/api/v1/instances/peers_controller_spec.rb
new file mode 100644
index 000000000..12a214a83
--- /dev/null
+++ b/spec/controllers/api/v1/instances/peers_controller_spec.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+RSpec.describe Api::V1::Instances::PeersController, type: :controller do
+  describe 'GET #index' do
+    it 'returns 200' do
+      get :index
+      expect(response).to have_http_status(200)
+    end
+
+    context '!Setting.peers_api_enabled' do
+      it 'returns 404' do
+        Setting.peers_api_enabled = false
+
+        get :index
+        expect(response).to have_http_status(404)
+      end
+    end
+  end
+end