1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-28 14:58:21 +09:00
mastodon/spec/workers/scheduler/ip_cleanup_scheduler_spec.rb

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