1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
require 'spec_helper'
describe Temple::HTML::AttributeRemover do
before do
@remover = Temple::HTML::AttributeRemover.new
end
it 'should pass static attributes through' do
expect(@remover.call([:html, :tag,
'div',
[:html, :attrs, [:html, :attr, 'class', [:static, 'b']]],
[:content]
])).to eq [:html, :tag, "div",
[:multi,
[:html, :attr, "class", [:static, "b"]]],
[:content]]
end
it 'should check for empty dynamic attribute if it is included in :remove_empty_attrs' do
expect(@remover.call([:html, :tag,
'div',
[:html, :attrs, [:html, :attr, 'class', [:dynamic, 'b']]],
[:content]
])).to eq [:html, :tag, "div",
[:multi,
[:multi,
[:capture, "_temple_html_attributeremover1", [:dynamic, "b"]],
[:if, "!_temple_html_attributeremover1.empty?",
[:html, :attr, "class", [:dynamic, "_temple_html_attributeremover1"]]]]],
[:content]]
end
it 'should not check for empty dynamic attribute if it is not included in :remove_empty_attrs' do
expect(@remover.call([:html, :tag,
'div',
[:html, :attrs, [:html, :attr, 'name', [:dynamic, 'b']]],
[:content]
])).to eq [:html, :tag, "div",
[:multi,
[:html, :attr, "name", [:dynamic, "b"]]],
[:content]]
end
end
|