debian-mirror-gitlab/spec/tasks/gitlab/git_rake_spec.rb

23 lines
573 B
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'rake_helper'
describe 'gitlab:git rake tasks' do
2018-11-08 19:23:39 +05:30
let(:base_path) { 'tmp/tests/default_storage' }
2018-11-18 11:00:15 +05:30
let!(:project) { create(:project, :repository) }
2018-05-09 12:01:36 +05:30
2018-03-17 18:26:18 +05:30
before do
Rake.application.rake_require 'tasks/gitlab/git'
allow_any_instance_of(String).to receive(:color) { |string, _color| string }
stub_warn_user_is_not_gitlab
end
describe 'fsck' do
it 'outputs the integrity check for a repo' do
2018-11-18 11:00:15 +05:30
expect { run_rake_task('gitlab:git:fsck') }.to output(/Performed integrity check for/).to_stdout
2018-03-17 18:26:18 +05:30
end
end
end