gpt4 book ai didi

ruby - rspec - 如何改变 lambda 应该期望的?

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

我有一些 lambda 代码,例如

lambda { Watir::Browser.new(mock_driver) }.should_not raise_error

如何更改它以使用 expect 语法?

我试过:

expect({ Watir::Browser.new(mock_driver)}).to not raise_error

但是我得到了:

syntax error, unexpected '}', expecting tASSOC (SyntaxError)
...expect ({Watir::Browser.new(mock_driver)}).to not raise_error

我试过了

expect{( Watir::Browser.new(mock_driver))}.to not raise_error

但是得到了

syntax error, unexpected tIDENTIFIER, expecting '('

最佳答案

你不需要那些括号。

expect{Watir::Browser.new(mock_driver)}.to_not raise_error

关于ruby - rspec - 如何改变 lambda 应该期望的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19549351/

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