mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:32:26 +08:00
a82530012a
PERF: stop loading highlight js on load To get latest highlight js run bin/rake highlightjs:update
24 lines
558 B
Ruby
24 lines
558 B
Ruby
require 'spec_helper'
|
|
require_dependency 'highlight_js/highlight_js'
|
|
|
|
describe HighlightJs do
|
|
it 'can list languages' do
|
|
HighlightJs.languages.should include('thrift')
|
|
end
|
|
|
|
it 'can generate a packed bundle' do
|
|
bundle = HighlightJs.bundle(["thrift", "http"])
|
|
bundle.should =~ /thrift/
|
|
bundle.should =~ /http/
|
|
bundle.should_not =~ /applescript/
|
|
end
|
|
|
|
|
|
it 'can get a version string' do
|
|
version1 = HighlightJs.version("http|cpp")
|
|
version2 = HighlightJs.version("rust|cpp|fake")
|
|
|
|
version1.should_not == version2
|
|
end
|
|
end
|