Grails 上的 Cuke4Duke
好的,我这里有一个 Grails 应用程序。
在之前的项目中,我们将 Cucumber 与 grails 一起使用,并在 ruby 中使用我们的步骤定义。 没关系,但如果我们能用我们在其他地方使用的相同脚本语言来编写定义,那就太好了。
如果有人以前做过,或者知道我如何让它运行,请告诉我。我看到一些插件似乎无法与 1.3.7 一起使用,
是否有什么方法可以让我将 jruby、cuke4duke 放入 BuildConfig 依赖项中,然后编写 script/Cucumber.groovy 来调用它?
Ok, so I've got a grails app here.
On a previous project we used cucumber alongside grails with our step definitions working in ruby.
It was ok, but it would be nice if we could write our defs in groovy, same scripting language we're using everywhere else.
If anyone's ever done it before, or knows how I could get it running, let me know. I've seen a few plugins that don't appear to work with 1.3.7
Is there not some way for me to just put jruby, cuke4duke in the BuildConfig dependencies and just write a scripts/Cucumber.groovy to invoke it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
https://github.com/thetrav/grails-cucumber
看起来其他人已经构建了一个cuke4duke 插件,我的修改导致它因错误而失败,并分配了很大的 permgen 空间供其使用。
我们现在使用 groovy 步骤定义(只需将 .groovy 文件放入 ${project_root}/features/step_definitions 中)和 geb 来驱动浏览器,一切似乎都可以正常工作
https://github.com/thetrav/grails-cucumber
Looks like someone else had already built a cuke4duke plugin, my modification causes it to fail on errors and allocates a large permgen space for it to use.
We're now using groovy step definitions (just put .groovy files in ${project_root}/features/step_definitions) and geb to drive the browser, all seems to work ok