discourse/spec/jobs/heartbeat_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
423 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe ::Jobs::Heartbeat do
after do
Discourse.disable_readonly_mode
end
it "still enqueues heartbeats in readonly mode" do
freeze_time 1.week.from_now
Discourse.enable_readonly_mode
Sidekiq::Testing.inline! do
::Jobs::Heartbeat.new.perform(nil)
expect(::Jobs::RunHeartbeat.last_heartbeat).to eq(Time.now.to_i)
end
end
end