mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:04:21 +08:00
41 lines
934 B
Ruby
41 lines
934 B
Ruby
|
require 'spec_helper'
|
||
|
require 'email'
|
||
|
|
||
|
describe EmailStyles do
|
||
|
|
||
|
def style_exists(html, css_rule)
|
||
|
fragment = Nokogiri::HTML.fragment(EmailStyles.new(html).format)
|
||
|
element = fragment.at(css_rule)
|
||
|
expect(element["style"]).not_to be_blank
|
||
|
end
|
||
|
|
||
|
it "returns blank from an empty string" do
|
||
|
EmailStyles.new("").format.should be_blank
|
||
|
end
|
||
|
|
||
|
it "attaches a style to h3 tags" do
|
||
|
style_exists("<h3>hello</h3>", "h3")
|
||
|
end
|
||
|
|
||
|
it "attaches a style to hr tags" do
|
||
|
style_exists("hello<hr>", "hr")
|
||
|
end
|
||
|
|
||
|
it "attaches a style to a tags" do
|
||
|
style_exists("<a href='#'>wat</a>", "a")
|
||
|
end
|
||
|
|
||
|
it "attaches a style to ul tags" do
|
||
|
style_exists("<ul><li>hello</li></ul>", "ul")
|
||
|
end
|
||
|
|
||
|
it "attaches a style to li tags" do
|
||
|
style_exists("<ul><li>hello</li></ul>", "li")
|
||
|
end
|
||
|
|
||
|
it "removes pre tags but keeps their contents" do
|
||
|
expect(EmailStyles.new("<pre>hello</pre>").format).to eq("hello")
|
||
|
end
|
||
|
|
||
|
end
|