about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorbeatrix <beatrix.bitrot@gmail.com>2017-11-17 15:17:49 -0500
committerGitHub <noreply@github.com>2017-11-17 15:17:49 -0500
commitb006bb82afb360d64e9d2f7f12aa76d4a69a2397 (patch)
tree6c8a597003cf17e1e2d8ea713d0478f54b9edeaa /spec
parent45f18b8f494153fd63871d60782da992e847ec16 (diff)
parentf6355f6ffb124ffe3a9e7339543a4f7ac7c0905a (diff)
Merge pull request #221 from glitch-soc/local-only-policy
Update StatusPolicy to check current_account for local_only? toots.
Diffstat (limited to 'spec')
-rw-r--r--spec/policies/status_policy_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/policies/status_policy_spec.rb b/spec/policies/status_policy_spec.rb
index bacb8fd9e..a90e22aad 100644
--- a/spec/policies/status_policy_spec.rb
+++ b/spec/policies/status_policy_spec.rb
@@ -71,6 +71,12 @@ RSpec.describe StatusPolicy, type: :model do
 
       expect(subject).to_not permit(viewer, status)
     end
+
+    it 'denies access when local-only and the viewer is not logged in' do
+      allow(status).to receive(:local_only?) { true }
+
+      expect(subject).to_not permit(nil, status)
+    end
   end
 
   permissions :reblog? do