8 lines
188 B
Ruby
8 lines
188 B
Ruby
module Secrets
|
|
def stub_secrets(configuration)
|
|
allow(Rails.application).to receive(:secrets).and_return(
|
|
ActiveSupport::OrderedOptions.new.merge(configuration)
|
|
)
|
|
end
|
|
end
|