#15 Add misskey fork indexable support

This commit is contained in:
KMY 2023-09-25 19:39:05 +09:00
parent 385ac0c1a2
commit 2f21aa5193
3 changed files with 50 additions and 1 deletions

View file

@ -169,6 +169,14 @@ RSpec.describe Status do
end
end
context 'when limited-public' do
let(:account_searchability) { :limited }
it 'returns limited' do
expect(subject.compute_searchability).to eq 'limited'
end
end
context 'when private-limited' do
let(:account_searchability) { :private }
let(:status_searchability) { :limited }