|
|
@ -10,11 +10,22 @@ describe REST::InstanceSerializer do
|
|
|
|
it 'returns recent usage data' do
|
|
|
|
it 'returns recent usage data' do
|
|
|
|
expect(serialization['usage']).to eq({ 'users' => { 'active_month' => 0 } })
|
|
|
|
expect(serialization['usage']).to eq({ 'users' => { 'active_month' => 0 } })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
describe 'configuration' do
|
|
|
|
it 'returns the VAPID public key' do
|
|
|
|
it 'returns the VAPID public key' do
|
|
|
|
expect(serialization['configuration']['vapid']).to eq({
|
|
|
|
expect(serialization['configuration']['vapid']).to eq({
|
|
|
|
'public_key' => Rails.configuration.x.vapid_public_key,
|
|
|
|
'public_key' => Rails.configuration.x.vapid_public_key,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it 'returns the max pinned statuses limit' do
|
|
|
|
|
|
|
|
expect(serialization.deep_symbolize_keys)
|
|
|
|
|
|
|
|
.to include(
|
|
|
|
|
|
|
|
configuration: include(
|
|
|
|
|
|
|
|
accounts: include(max_pinned_statuses: StatusPinValidator::PIN_LIMIT)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|