mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
f0a122a66c
introduce new setting email_always, that will force emails to send to users regardless of presence on site
25 lines
557 B
Ruby
25 lines
557 B
Ruby
require 'spec_helper'
|
|
require_dependency 'jobs/regular/process_post'
|
|
|
|
describe Jobs::PollMailbox do
|
|
|
|
|
|
let(:poller) { Jobs::PollMailbox.new }
|
|
|
|
it "does no polling if pop3s_polling_enabled is false" do
|
|
SiteSetting.expects(:pop3s_polling_enabled?).returns(false)
|
|
poller.expects(:poll_pop3s).never
|
|
poller.execute({})
|
|
end
|
|
|
|
describe "with pop3s_polling_enabled" do
|
|
|
|
it "calls poll_pop3s" do
|
|
SiteSetting.expects(:pop3s_polling_enabled?).returns(true)
|
|
poller.expects(:poll_pop3s).once
|
|
poller.execute({})
|
|
end
|
|
end
|
|
|
|
end
|