gpt4 book ai didi

ruby-on-rails - 如何模拟 RSpec 期望语法中的类方法?

转载 作者:数据小太阳 更新时间:2023-10-29 07:17:32 27 4
gpt4 key购买 nike

我对如何使用新的 expect 语法模拟类方法感到困惑。这有效:

Facebook
.should_receive(:profile)
.with("token")
.and_return({"name" => "Hello", "id" => "14314141", "email" => "hello@me.com"})

这不是:

facebook = double("Facebook")
allow(facebook).to receive(:profile).with("token").and_return({"name" => "Hello", "id" => "14314141", "email" => "hello@me.com"})

谁能告诉我这里出了什么问题?

最佳答案

这是你想要做的(不需要 double):

allow(Facebook)
.to receive(:profile)
.with("token")
.and_return({"name" => "Hello", "id" => "14314141", "email" => "hello@me.com"})

关于ruby-on-rails - 如何模拟 RSpec 期望语法中的类方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40888068/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com