我的服务代码如下所示:
$flipper[:fall_season].enabled?
RSpec测试中的一个存根如何?
答案 0 :(得分:1)
尝试:
$flipper = {} # or defined some other place.....
fall_session = double
allow(fall_session).to receive(:enabled?).and_return(true)
allow($flipper).to receive(:[]).with(:fall_session).and_return(fall_session)
expect($flipper[:fall_session].enabled?).to be(true)