require 'spec_helper' describe Gitlab::Highlight, lib: true do include RepoHelpers let(:project) { create(:project) } let(:repository) { project.repository } let(:commit) { project.commit(sample_commit.id) } describe '.highlight_lines' do let(:lines) do Gitlab::Highlight.highlight_lines(project.repository, commit.id, 'files/ruby/popen.rb') end it 'should properly highlight all the lines' do expect(lines[4]).to eq(%Q{ extend self\n}) expect(lines[21]).to eq(%Q{ unless File.directory?(path)\n}) expect(lines[26]).to eq(%Q{ @cmd_status = 0\n}) end end describe 'custom highlighting from .gitattributes' do let(:branch) { 'gitattributes' } let(:path) { 'custom-highlighting/test.gitlab-custom' } let(:blob) { repository.blob_at_branch(branch, path) } let(:highlighter) do Gitlab::Highlight.new(blob.path, blob.data, repository: repository) end before { project.change_head('gitattributes') } it 'highlights as ruby' do expect(highlighter.lexer.tag).to eq 'ruby' end end end