Sha256: d68cc1a9b04210e8bf9e4bc6421be7ac2b4316690baba0527eb40cd530bfd1db
Contents?: true
Size: 1.16 KB
Versions: 8
Compression:
Stored size: 1.16 KB
Contents
require "spec_helper" describe SDoc::Helpers do before :each do @helpers = Class.new do include SDoc::Helpers end.new end describe "#strip_tags" do it "should strip out HTML tags from the given string" do strings = [ [ %(<strong>Hello world</strong>), "Hello world" ], [ %(<a href="Streams.html">Streams</a> are great), "Streams are great" ], [ %(<a href="https://github.com?x=1&y=2#123">zzak/sdoc</a> Standalone), "zzak/sdoc Standalone" ], [ %(<h1 id="module-AR::Cb-label-Foo+Bar">AR Cb</h1>), "AR Cb" ], [ %(<a href="../Base.html">Base</a>), "Base" ], [ %(Some<br>\ntext), "Some\ntext" ] ] strings.each do |(html, stripped)| @helpers.strip_tags(html).must_equal stripped end end end describe "#truncate" do it "should truncate the given text around a given length" do @helpers.truncate("Hello world", length: 5).must_equal "Hello." end end end
Version data entries
8 entries across 8 versions & 1 rubygems