Fix glitch-soc-only tests being broken because of test refactor
This commit is contained in:
parent
60c7e559d8
commit
61f6cd45e3
1 changed files with 9 additions and 9 deletions
|
@ -84,18 +84,18 @@ RSpec.describe StatusPolicy, type: :model do
|
||||||
|
|
||||||
expect(subject).to_not permit(viewer, status)
|
expect(subject).to_not permit(viewer, status)
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
it 'denies access when local-only and the viewer is not logged in' do
|
it 'denies access when local-only and the viewer is not logged in' do
|
||||||
allow(status).to receive(:local_only?).and_return(true)
|
allow(status).to receive(:local_only?).and_return(true)
|
||||||
|
|
||||||
expect(subject).to_not permit(nil, status)
|
expect(subject).to_not permit(nil, status)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'denies access when local-only and the viewer is from another domain' do
|
it 'denies access when local-only and the viewer is from another domain' do
|
||||||
viewer = Fabricate(:account, domain: 'remote-domain')
|
viewer = Fabricate(:account, domain: 'remote-domain')
|
||||||
allow(status).to receive(:local_only?).and_return(true)
|
allow(status).to receive(:local_only?).and_return(true)
|
||||||
expect(subject).to_not permit(viewer, status)
|
expect(subject).to_not permit(viewer, status)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue