1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 14:59:20 +00:00
mastodon/spec/lib/admin/system_check_spec.rb

16 lines
290 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Admin::SystemCheck do
let(:user) { Fabricate(:user) }
describe 'perform' do
let(:result) { described_class.perform(user) }
it 'runs all the checks' do
expect(result).to be_an(Array)
end
end
end