MKumar
MKumar

Reputation: 1524

How to call a rake task in rspec

I am trying to invoke a rake task in in my rspec.

  require "rake"
  rake = Rake::Application.new
  Rake.application = rake
  rake.init
  rake.load_rakefile
  rake['rake my:task'].invoke

But i am getting error

 Failure/Error: rake['rake db:migrate'].invoke
 RuntimeError:
   Don't know how to build task 'rake db:migrate'

Does anyone have a idea how we can invoke rake task in rspec code.

Any help would be highly appreciated.

Upvotes: 11

Views: 4747

Answers (3)

Vala
Vala

Reputation: 537

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

Upvotes: 12

Martin Fenner
Martin Fenner

Reputation: 76

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?.

Upvotes: 3

stuartc
stuartc

Reputation: 2274

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

Upvotes: 12

Related Questions