rspec2.99でテスト全部ok後transpecを実行しました。以下ワーニングが出るようになりました。

Matching with be_hoge_fixed on an object that doesn't respond to `hoge_fixed?` is deprecated. Use `respond_to_missing?` or `respond_to?` on your object instead. Called from /hoge/poge/workspace/transpec4.0/spec/controllers/hogehoge/hoges_controller_spec.rb:207:in `block (5 levels) in <top (required)>'.

テストコードは以下の感じです。

context "かつ、情報が存在しない場合、" do
  before(:each) do
    Pogepoge.stub_chain(:hoge_at, :exists?){false}
  end
  it "falseを返す" do
    expect(controller).not_to be_hoge_fixed
  end
end

プロダクトコードは以下のようです。

def hoge_fixed?
  return false unless poge_selected?
  unless HOGE.exists?
    return false
  end
  true
end


def poge_selected?
  if params[:poge_month].blank?
    return false
  end
  true
end

ワーニング解消方法を知りたいです。