mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
13 lines
380 B
Ruby
13 lines
380 B
Ruby
require 'rails_helper'
|
|
require 'pretty_text'
|
|
|
|
describe PrettyText do
|
|
|
|
it "supports details tag" do
|
|
cooked_html = "<details><summary>foo</summary>\n\n<p>bar</p>\n\n</details>"
|
|
expect(PrettyText.cook("<details><summary>foo</summary>bar</details>")).to match_html(cooked_html)
|
|
expect(PrettyText.cook("[details=foo]bar[/details]")).to match_html(cooked_html)
|
|
end
|
|
|
|
end
|