Source code for the custom Mastodon (Glitchsoc) instance on berserker.town. https://berserker.town/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
575 B

# frozen_string_literal: true
require 'rails_helper'
describe Admin::SystemCheck::BaseCheck do
subject(:check) { described_class.new(user) }
let(:user) { Fabricate(:user) }
describe 'skip?' do
it 'returns false' do
expect(check.skip?).to be false
end
end
describe 'pass?' do
it 'raises not implemented error' do
expect { check.pass? }.to raise_error(NotImplementedError)
end
end
describe 'message' do
it 'raises not implemented error' do
expect { check.message }.to raise_error(NotImplementedError)
end
end
end