require File.join(File.dirname(__FILE__), '..', 'spec_helper') include TruncateHtmlHelper describe TruncateHtmlHelper do it 'should be included in ActionView::Base' do ActionView::Base.included_modules.should include(TruncateHtmlHelper) end describe '#truncate_html' do context 'truncating in the middle of a link' do before(:each) do @html = '
Look at this#{char} More words here
" end it 'should place the punctuation after the tag without any whitespace' do truncate_html(@html, :length => 16).should == "Look at this#{char} More...
" end end end context 'when the html has a non punctuation character after a closing tag' do before(:each) do @html = 'Look at this link for randomness
' end it 'should leave a whitespace between the closing tag and the following word character' do truncate_html(@html, :length => 17).should == 'Look at this link...
' end end #unusual, but just covering my ass context 'when the HTML tags are multiline' do before(:each) do @html = <<-END_HTML END_HTML end it 'should recognize the multiline html properly' do truncate_html(@html, :length => 8).should == ' ' end end %w(br hr img).each do |unpaired_tag| context "when the html contains a #{unpaired_tag} tag" do context "and the #{unpaired_tag} does not have the closing slash" do before(:each) do @html = "