test/test_clean_comment.rb in sanitize-6.0.0 vs test/test_clean_comment.rb in sanitize-6.0.1

- old
+ new

@@ -9,39 +9,39 @@ before do @s = Sanitize.new(:allow_comments => false, :elements => ['div']) end it 'should remove comments' do - @s.fragment('foo <!-- comment --> bar').must_equal 'foo bar' - @s.fragment('foo <!-- ').must_equal 'foo ' - @s.fragment('foo <!-- - -> bar').must_equal 'foo ' - @s.fragment("foo <!--\n\n\n\n-->bar").must_equal 'foo bar' - @s.fragment("foo <!-- <!-- <!-- --> --> -->bar").must_equal 'foo --&gt; --&gt;bar' - @s.fragment("foo <div <!-- comment -->>bar</div>").must_equal 'foo <div>&gt;bar</div>' + _(@s.fragment('foo <!-- comment --> bar')).must_equal 'foo bar' + _(@s.fragment('foo <!-- ')).must_equal 'foo ' + _(@s.fragment('foo <!-- - -> bar')).must_equal 'foo ' + _(@s.fragment("foo <!--\n\n\n\n-->bar")).must_equal 'foo bar' + _(@s.fragment("foo <!-- <!-- <!-- --> --> -->bar")).must_equal 'foo --&gt; --&gt;bar' + _(@s.fragment("foo <div <!-- comment -->>bar</div>")).must_equal 'foo <div>&gt;bar</div>' # Special case: the comment markup is inside a <script>, which makes it # text content and not an actual HTML comment. - @s.fragment("<script><!-- comment --></script>").must_equal '' + _(@s.fragment("<script><!-- comment --></script>")).must_equal '' - Sanitize.fragment("<script><!-- comment --></script>", :allow_comments => false, :elements => ['script']) + _(Sanitize.fragment("<script><!-- comment --></script>", :allow_comments => false, :elements => ['script'])) .must_equal '<script><!-- comment --></script>' end end describe 'when :allow_comments is true' do before do @s = Sanitize.new(:allow_comments => true, :elements => ['div']) end it 'should allow comments' do - @s.fragment('foo <!-- comment --> bar').must_equal 'foo <!-- comment --> bar' - @s.fragment('foo <!-- ').must_equal 'foo <!-- -->' - @s.fragment('foo <!-- - -> bar').must_equal 'foo <!-- - -> bar-->' - @s.fragment("foo <!--\n\n\n\n-->bar").must_equal "foo <!--\n\n\n\n-->bar" - @s.fragment("foo <!-- <!-- <!-- --> --> -->bar").must_equal 'foo <!-- <!-- <!-- --> --&gt; --&gt;bar' - @s.fragment("foo <div <!-- comment -->>bar</div>").must_equal 'foo <div>&gt;bar</div>' + _(@s.fragment('foo <!-- comment --> bar')).must_equal 'foo <!-- comment --> bar' + _(@s.fragment('foo <!-- ')).must_equal 'foo <!-- -->' + _(@s.fragment('foo <!-- - -> bar')).must_equal 'foo <!-- - -> bar-->' + _(@s.fragment("foo <!--\n\n\n\n-->bar")).must_equal "foo <!--\n\n\n\n-->bar" + _(@s.fragment("foo <!-- <!-- <!-- --> --> -->bar")).must_equal 'foo <!-- <!-- <!-- --> --&gt; --&gt;bar' + _(@s.fragment("foo <div <!-- comment -->>bar</div>")).must_equal 'foo <div>&gt;bar</div>' - Sanitize.fragment("<script><!-- comment --></script>", :allow_comments => true, :elements => ['script']) + _(Sanitize.fragment("<script><!-- comment --></script>", :allow_comments => true, :elements => ['script'])) .must_equal '<script><!-- comment --></script>' end end end