13

在我们的项目中,如果你运行rake test,就会发生可怕的事情;你需要运行rake spec。我似乎无法弄清楚如何重新定义rake test以仅输出一条建议运行的消息rake spec

我怎样才能做到这一点?

4

1 回答 1

17

最后在你的 Rakefile 上:

Rake::Task["test"].clear
task 'test' do
    puts "use 'rake spec'"
end

甚至更好

Rake::Task["test"].clear
task 'test' do
    Rake::Task["spec"].invoke
end
于 2012-12-06T00:51:35.713 回答