mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
14 lines
369 B
Ruby
14 lines
369 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe REST::InstanceSerializer do
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
|
let(:record) { InstancePresenter.new }
|
|
|
|
describe 'usage' do
|
|
it 'returns recent usage data' do
|
|
expect(serialization['usage']).to eq({ 'users' => { 'active_month' => 0 } })
|
|
end
|
|
end
|
|
end
|