每次我想运行Rake测试任务db:test:prepare正在被调用,并且它从schema.rb和迁移重建我的测试环境数据库.我想要的是禁用db:test的调用:准备当我想测试make Rails应用程序.是否可以不修改Rails宝石?
解决方法
以下是我看到的解决方案:
在你的Rakefile中:
Rake::TaskManager.class_eval do def remove_task(task_name) @tasks.delete(task_name.to_s) end end
在lib / tasks / db / test.rake中:
Rake.application.remove_task 'db:test:prepare' namespace :db do namespace :test do task :prepare do |t| # rewrite the task to not do anything you don't want end end end