Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git_rake_spec.rb « gitlab « tasks « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60b51186cebf3ec63e75ef6db731bef10113be6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake_helper'

describe 'gitlab:git rake tasks' do
  before do
    Rake.application.rake_require 'tasks/gitlab/git'

    storages = { 'default' => { 'path' => Settings.absolute('tmp/tests/default_storage') } }

    FileUtils.mkdir_p(Settings.absolute('tmp/tests/default_storage/repo/test.git'))
    allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
    stub_warn_user_is_not_gitlab
  end

  after do
    FileUtils.rm_rf(Settings.absolute('tmp/tests/default_storage'))
  end

  describe 'fsck' do
    it 'outputs the right git command' do
      expect { run_rake_task('gitlab:git:fsck') }.to output(/Performed Checking integrity/).to_stdout
    end
  end
end