rspec and_return 多个值

发布于 2024-12-14 16:01:52 字数 330 浏览 0 评论 0原文

我正在尝试存根一个返回多个值的方法。例如:

class Foo
  def foo(a,b)
    return a + 1, b + 2
  end
end

我想存根它,但我遇到了问题,and_return 与 2 个值返回

f = Foo.new
f.stub!(:foo).and_return(3,56)

不起作用。基本上,第一次调用时返回 3,第二次调用时返回 56。有谁知道让它在第一次调用时返回 3,56 的语法是什么?这对于 rspec 来说是可能的吗?

提前致谢... 京东

I am trying to stub a method that returns multiple values. For example:

class Foo
  def foo(a,b)
    return a + 1, b + 2
  end
end

I want to stub it but I'm having trouble with and_return with 2 value returns

f = Foo.new
f.stub!(:foo).and_return(3,56)

doesn't work. It basically returns 3 the first time it's called and 56 the second time. Does anyone know what the syntax would be to have it return 3,56 the first time it's called? Is this even possible with rspec?

thanks in advance...
jd

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子是时光的心 2024-12-21 16:01:53

多值返回是数组:

> def f; return 1, 2; end
> f.class
 => Array 

因此返回一个数组:

f.stub!(:foo).and_return([3, 56])

Multiple-value returns are arrays:

> def f; return 1, 2; end
> f.class
 => Array 

So return an array:

f.stub!(:foo).and_return([3, 56])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文