f1f7bfc06f
These tasks are happening through housekeeping right now, by default
ever 10th push. This removes the need for these tasks.
Side note, this removes one of my first contributions to GitLab, as back
than I introduced these tasks through: 54e6c0045b
Closes https://gitlab.com/gitlab-org/gitaly/issues/768
20 lines
542 B
Ruby
20 lines
542 B
Ruby
require 'rake_helper'
|
|
|
|
describe 'gitlab:git rake tasks' do
|
|
let(:base_path) { 'tmp/tests/default_storage' }
|
|
let!(:project) { create(:project, :repository) }
|
|
|
|
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
|
|
expect { run_rake_task('gitlab:git:fsck') }.to output(/Performed integrity check for/).to_stdout
|
|
end
|
|
end
|
|
end
|