mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:33:39 +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
34 lines
1.4 KiB
Ruby
34 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'html_prettify'
|
|
|
|
RSpec.describe HtmlPrettify do
|
|
|
|
def t(source, expected)
|
|
expect(HtmlPrettify.render(source)).to eq(expected)
|
|
end
|
|
|
|
it 'correctly prettifies html' do
|
|
t "<p>All's well!</p>", "<p>All’s well!</p>"
|
|
t "<p>Eatin' Lunch'.</p>", "<p>Eatin’ Lunch’.</p>"
|
|
t "<p>a 1/4. is a fraction but not 1/4/2000</p>", "<p>a ¼. is a fraction but not 1/4/2000</p>"
|
|
t "<p>Well that'll be the day</p>", "<p>Well that’ll be the day</p>"
|
|
t %(<p>"Quoted text"</p>), %(<p>“Quoted text”</p>)
|
|
t "<p>I've been meaning to tell you ..</p>", "<p>I’ve been meaning to tell you ..</p>"
|
|
t "<p>single `backticks` in HTML should be preserved</p>", "<p>single `backticks` in HTML should be preserved</p>"
|
|
t "<p>double hyphen -- ndash --- mdash</p>", "<p>double hyphen – ndash — mdash</p>"
|
|
t "a long time ago...", "a long time ago…"
|
|
t "is 'this a mistake'?", "is ‘this a mistake’?"
|
|
t ERB::Util.html_escape("'that went well'"), "‘that went well’"
|
|
t '"that went well"', "“that went well”"
|
|
t ERB::Util.html_escape('"that went well"'), "“that went well”"
|
|
|
|
t 'src="test.png"> yay', "src=“test.png”> yay"
|
|
|
|
t '\\\\mnt\\c', "\\\\mnt\\c"
|
|
|
|
t ERB::Util.html_escape('<img src="test.png"> yay'), "<img src=“test.png”> yay"
|
|
end
|
|
|
|
end
|