gitlab-org--gitlab-foss/spec/support/helpers/rake_helpers.rb
Andrew Newdigate ff0b2cc61f Re-enable MethodCallWithoutArgsParentheses Cop
Re-enables and autocorrects all instances of the
Style/MethodCallWithoutArgsParentheses rule
2019-01-29 21:05:30 +02:00

23 lines
594 B
Ruby

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(main_object).to receive(:warn_user_is_not_gitlab)
end
def silence_output
allow(main_object).to receive(:puts)
allow(main_object).to receive(:print)
end
def silence_progress_bar
allow_any_instance_of(ProgressBar::Output).to receive(:stream).and_return(double.as_null_object)
end
def main_object
@main_object ||= TOPLEVEL_BINDING.eval('self')
end
end