用rspec盯住费加罗

时间:2015-07-08 17:52:49

标签: ruby-on-rails ruby rspec

我在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相同的内容。那是为什么?

1 个答案:

答案 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