summaryrefslogtreecommitdiff
path: root/spec/models
diff options
context:
space:
mode:
authorMark Chao <mchao@gitlab.com>2018-09-06 10:59:52 +0800
committerMark Chao <mchao@gitlab.com>2018-10-30 15:44:55 +0800
commit6580de78bb52323fcafaaf4d2e770590e4f1c586 (patch)
treee310ab5c7342b82c1ce89d7653871b26758e88fd /spec/models
parent6f0378485761ae476bf373b7cddb611da05caa9d (diff)
downloadgitlab-ce-6580de78bb52323fcafaaf4d2e770590e4f1c586.tar.gz
Add access to Blob's language from gitattributes
Ported from Highlight class since it as a concept is more related to blob, and this allows more flexibility.
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/blob_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/models/blob_spec.rb b/spec/models/blob_spec.rb
index 81e35e6c931..da3b29dffb6 100644
--- a/spec/models/blob_spec.rb
+++ b/spec/models/blob_spec.rb
@@ -224,6 +224,22 @@ describe Blob do
end
end
+ describe '#language_from_gitattributes' do
+ subject(:blob) { fake_blob(path: 'file.md') }
+
+ it 'returns return value from gitattribute' do
+ expect(blob.project.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 project is absent' do
+ allow(blob).to receive(:project).and_return(nil)
+
+ expect(blob.language_from_gitattributes).to eq(nil)
+ end
+ end
+
describe '#simple_viewer' do
context 'when the blob is empty' do
it 'returns an empty viewer' do