添加一个用于创建对象的钩子,该钩子在 Cucumber 中只发生一次
我只需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用常数。例如,将其放入您的 env.rb 中,
对于所有测试,它只会实例化一次。
PS:或者考虑使用单例(如果它适合您的架构)。
Use constants. For example put this into your env.rb
It would be instantiated only once for all tests.
P.S: Or consider using singleton if it fits into your architecture.