我从Rspec过渡到minitest来测试后来的比较速度和并行性,维护等等。
在Rspec中,我可以使用以下命令运行我的测试用例:
rspec path/to/test/suite.rb -e 'Should test this case'
'应该测试这个案例'是suite.rb文件中的这一行:
it 'Should test this case' do
...
end
但我似乎无法在最小的时候找到任何方法。
答案 0 :(得分:1)
您不仅可以运行单独的测试,还可以使用正则表达式
$ ruby path/to/test/suite.rb --name /Should test this case/