zammad/spec/support/system_init_done.rb
2026-01-02 15:41:09 +02:00

17 lines
588 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
module SystemInitDoneHelper
def system_init_done(state = true)
# generally allow all calls to Setting.exists? to avoid
# RSpec errors where a different Setting is accessed
allow(Setting).to receive(:exists?).and_call_original
# just mock the Setting check for `system_init_done`
# and return the given parameter value
allow(Setting).to receive(:exists?).with(name: 'system_init_done').and_return(state)
end
end
RSpec.configure do |config|
config.include SystemInitDoneHelper
end