demarches-normaliennes/spec/jobs/cron/cron_job_spec.rb
2024-08-22 09:26:48 +02:00

9 lines
255 B
Ruby

# frozen_string_literal: true
RSpec.describe Cron::Datagouv::ExportAndPublishDemarchesPubliquesJob, type: :job do
describe '#schedulable?' do
it 'is schedulable by default' do
expect(Cron::CronJob.schedulable?).to be_truthy
end
end
end