ruby-on-rails – 如何使用Unit :: Test在Ruby on Rails 3.0.7中运行单个测试?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何使用Unit :: Test在Ruby on Rails 3.0.7中运行单个测试?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是的我知道同样的问题(https://stackoverflow.com/questions/1506780/how-to-run-single-test-from-rails-test-suite),但解决方案似乎不起作用对于Rails 3.也许它适用于Rails 2?

如何使用Unit :: Test在Rails 3.0.7中运行单个测试?不是单个测试文件,而是单个测试.

test "the truth" do
  assert false
end

ruby -I test test / functional / test_file.rb -n“the truth”生成0个测试,0个断言,0个失败,0个错误

解决方法

尝试正则表达式
bundle exec ruby -I test test/functional/test_file.rb -n "/truth/"
原文链接:https://www.f2er.com/ruby/266548.html

猜你在找的Ruby相关文章