How to call a rake task in rspec

旧城冷巷雨未停 提交于 2019-12-04 01:59:19
Martin Fenner

To pass in the arguments in square brackets to invoke:

rake sim:manual_review_referral_program[3,4]

becomes:

rake['sim:manual_review_referral_program'].invoke(3,4)

If your args are in an array, you can do the following:

args = [3,4]
rake['sim:manual_review_referral_program'].invoke(*args)

More info at this StackOverflow question: How to run Rake tasks from within Rake tasks?.

Small namespacing issue, the task is db:migrate not rake db:migrate like the command line usage.

So changing it to this should help:

rake['db:migrate'].invoke

A simpler solution for Rails with Rspec :

In your spec_helper (or rails_helper for newer versions of rspec-rails) :

require "rake"
Rails.application.load_tasks

Then when you want to invoke your task you can do the following :

Rake::Task['my:task'].invoke
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!