2017-04-24 161 views
1

我創建了一個以下rspec mock,它運行良好,但我執行它時得到了警告。Rspec:棄用警告

Using `stub` from rspec-mocks' old `:should` syntax without explicitly enabling the syntax is deprecated. Use the new `:expect` syntax or explicitly enable `:should` instead. called from /file/path.rb:26:in `block (3 levels) in <top (required)>'. 

這是我的單元測試。在我的單元測試中,第26行是user_health_condition.stub(:user_condition_flag) do |user_id|。每個警告我使用期望,爲什麼我得到這個警告?

describe '.user_condition_flag' do 
    let(:expected_result_with_diabetes) { 'Y' } 
    let(:expected_result_without_diabetes) { 'N' } 
    let(:user_id_1) { 38 } 
    let(:user_id_2) { 39 } 

    context 'with entries in table' do 
    it 'returns expected results' do 
     user_health_condition = double(user_health_condition) 
     allow(user_health_condition).to receive(:user_condition_flag).and_return(expected_result_with_diabetes) 
     user_health_condition.stub(:user_condition_flag) do |user_id| 
     if user_id == :user_id_1 
      'Y' 
     elsif user_id == :user_id_2 
      'N' 
     end 
     end 

     expect(user_health_condition.user_condition_flag(:user_id_1)).to eq(expected_result_with_diabetes) 
     expect(user_health_condition.user_condition_flag(:user_id_2)).to eq(expected_result_without_diabetes) 
    end 
    end 
end 

回答