目前,我正在开发一个使用 maven 3 构建的 java web 应用程序。该应用程序的集成测试是用 ruby 编写的,使用minitest
和capybara
. 目前我使用c-ruby
andbundler
来运行测试。对于 Jenkins 集成,我们使用ci_reporter
gem 和 rake 任务。
我想将测试与 Maven 生命周期集成。为此,我在and阶段使用cargo-maven2-plugin
启动和停止应用程序服务器。我想要实现的是在阶段运行 ruby 集成测试。pre-integration-test
post-integration-test
integration-test
添加依赖项的最佳方法是什么?可以使用bundler
吗?
如何使用 jruby 开始测试?