1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-24 16:43:08 -05:00

14 lines
261 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe Scheduler::IpCleanupScheduler do
let(:worker) { described_class.new }
describe 'perform' do
it 'runs without error' do
expect { worker.perform }.to_not raise_error
end
end
end