在users_controller_test.rb中我有:
def test_name
...
end
def test_name_2
...
end
etc...
是否可以从命令行仅运行第一个测试?类似的东西:
rake test:functionals TEST=test/functional/users_controller_test.rb (plus the test name?)
由于
答案 0 :(得分:2)
你可以这样做:
ruby test/functional/users_controller_test.rb -n test_name
答案 1 :(得分:0)
你可能会得到一些牵引力 ruby test / functional / users_controller_test.rb --something