我在rspec测试中存在困惑Figaro的问题。 我的代码看起来像这样:
class User < ActiveRecord::Base
def ce_url_link
path = Figaro.env.online_url || Figaro.env.root_url + '/online'
"#{path}/#{ce_code}"
end
end
describe 'ce_url_link' do
let(:user) { create(:user) }
context 'when Figaro.env.online_url is not present' do
it 'uses Figaro.env.root_url as a path' do
allow(Figaro.env).to receive(:online_url).and_return(nil)
end
end
end
当我添加一些期望规格时,Figaro.env.online_url返回与application.yml相同的内容。那是为什么?
答案 0 :(得分:3)
你还没有将Figaro.env
作为双重记录。
describe do
before do
stub_const("Figaro", double)
allow(Figaro).to receive_message_chain(:env, :foo_bar) { :yay }
end
it do
expect(Figaro.env.foo_bar).to eq :yay
end
end