是的我知道同样的问题(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/"