添加一个用于创建对象的钩子,该钩子在 Cucumber 中只发生一次

发布于 2024-11-28 02:35:54 字数 180 浏览 0 评论 0原文

我只需要在 Cucumber 中创建一次且仅一次的对象。我在 support/ 中添加了一个名为 object_setup.rb 的文件,并从 env.rb 中加载它。该文件仅包含:

@obj = SomeObj.new

但在我的任何步骤中都无法识别该对象。如果我将此行添加到步骤文件的顶部,也会发生同样的事情。

I just need an object created once and only once in Cucumber. I added a file in support/ called object_setup.rb and load it from within env.rb. The file only contains:

@obj = SomeObj.new

But this object is not recognized within any of my steps. The same thing happens if I add this line to the top of the steps file.

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

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

发布评论

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

评论(1

深海不蓝 2024-12-05 02:35:54

使用常数。例如,将其放入您的 env.rb 中,

MY_AWESOME_OBJECT = SomeObj.new

对于所有测试,它只会实例化一次。

PS:或者考虑使用单例(如果它适合您的架构)。

Use constants. For example put this into your env.rb

MY_AWESOME_OBJECT = SomeObj.new

It would be instantiated only once for all tests.

P.S: Or consider using singleton if it fits into your architecture.

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