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

blob_language_from_git_attributes_spec.rb « concerns « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c07ee15e841ad130b9275b08f38b475956f98ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BlobLanguageFromGitAttributes do
  include FakeBlobHelpers

  let(:project) { build(:project, :repository) }

  describe '#language_from_gitattributes' do
    subject(:blob) { fake_blob(path: 'file.md') }

    it 'returns return value from gitattribute' do
      allow(blob.repository).to receive(:exists?).and_return(true)
      expect(blob.repository).to receive(:gitattribute).with(blob.path, 'gitlab-language').and_return('erb?parent=json')

      expect(blob.language_from_gitattributes).to eq('erb?parent=json')
    end

    it 'returns nil if repository is absent' do
      allow(blob).to receive(:repository).and_return(nil)

      expect(blob.language_from_gitattributes).to eq(nil)
    end

    it 'returns nil if repository does not exist' do
      allow(blob.repository).to receive(:exists?).and_return(false)

      expect(blob.language_from_gitattributes).to eq(nil)
    end
  end
end