mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:29:47 +08:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
22 lines
557 B
Ruby
22 lines
557 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe HighlightJs do
|
|
it 'can list languages' do
|
|
expect(HighlightJs.languages).to include('thrift')
|
|
end
|
|
|
|
it 'can generate a packed bundle' do
|
|
bundle = HighlightJs.bundle(["thrift", "http"])
|
|
expect(bundle).to match(/thrift/)
|
|
expect(bundle).to match(/http/)
|
|
expect(bundle).not_to match(/applescript/)
|
|
end
|
|
|
|
it 'can get a version string' do
|
|
version1 = HighlightJs.version("http|cpp")
|
|
version2 = HighlightJs.version("rust|cpp|fake")
|
|
|
|
expect(version1).not_to eq(version2)
|
|
end
|
|
end
|