Sha256: d2d45573cffeeb176bf31b065815f823449863836ea24eae38f89ed9c58ae644
Contents?: true
Size: 1.22 KB
Versions: 2
Compression:
Stored size: 1.22 KB
Contents
require 'spec_helper' describe Jackb::Highlight do describe 'code highlighting' do it 'should highlight the code' do Jackb::Highlight.render('<pre><code><%= "test" %></code></pre>').should eql(Albino.new('<%= "test" %>', :ruby).to_s) end it 'should highlight the code in an other language' do Jackb::Highlight.render('<pre><code language="python"><%= "test" %></code></pre>').should eql(Albino.new('<%= "test" %>', :python).to_s) end describe 'unescape' do it 'should unescape the <' do Jackb::Highlight.new.send(:unescape, 'hey<').should eql('hey<') end it 'should unescape the >' do Jackb::Highlight.new.send(:unescape, 'hey>').should eql('hey>') end end describe 'extract_lang' do it 'should extract a language' do Jackb::Highlight.new.send(:extract_lang, ' language="python"').should eql(:python) end it 'should extract a language with short lang attribute' do Jackb::Highlight.new.send(:extract_lang, ' lang="python"').should eql(:python) end it 'should get the default language' do Jackb::Highlight.new.send(:extract_lang, '').should eql(:ruby) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jackb-0.0.5 | spec/lib/highlight_spec.rb |
jackb-0.0.4 | spec/lib/highlight_spec.rb |