summaryrefslogtreecommitdiff
path: root/spec/support/rake_helpers.rb
blob: 5cb415111d277cc6cf860a6a4ae9af2895c54959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module RakeHelpers
  def run_rake_task(task_name, *args)
    Rake::Task[task_name].reenable
    Rake.application.invoke_task("#{task_name}[#{args.join(',')}]")
  end

  def stub_warn_user_is_not_gitlab
    allow_any_instance_of(Object).to receive(:warn_user_is_not_gitlab)
  end

  def silence_output
    allow($stdout).to receive(:puts)
    allow($stdout).to receive(:print)
  end
end