mirror of https://github.com/tootsuite/mastodon
24 lines
624 B
Ruby
24 lines
624 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Admin::Metrics::Dimension::SpaceUsageDimension do
|
|
subject { described_class.new(start_at, end_at, limit, params) }
|
|
|
|
let(:start_at) { 2.days.ago }
|
|
let(:end_at) { Time.now.utc }
|
|
let(:limit) { 10 }
|
|
let(:params) { ActionController::Parameters.new }
|
|
|
|
describe '#data' do
|
|
it 'reports on used storage space' do
|
|
expect(subject.data.map(&:symbolize_keys))
|
|
.to include(
|
|
include(key: 'media', value: /\d/),
|
|
include(key: 'postgresql', value: /\d/),
|
|
include(key: 'redis', value: /\d/)
|
|
)
|
|
end
|
|
end
|
|
end
|