Sha256: 57e9a4c3b6844f7d1da6c0fe4ebc44b1047c97ad2d7fc4977bd04f9dcccb63b7
Contents?: true
Size: 1.66 KB
Versions: 3
Compression:
Stored size: 1.66 KB
Contents
require 'spec_helper' describe Bergamasco::Summarize do subject { Bergamasco::Summarize } it 'should truncate after 250 characters' do filepath = fixture_path + 'cool-dois-without-yml.md' file = IO.read(filepath) content = subject.summary(file) expect(content.length).to eq(250) expect(content).to start_with("In 1998 Tim Berners-Lee coined") end it 'should truncate after 75 characters' do filepath = fixture_path + 'cool-dois-without-yml.md' file = IO.read(filepath) content = subject.summary(file, length: 75) expect(content.length).to eq(83) expect(content).to start_with("In 1998 Tim Berners-Lee coined") end it 'should truncate at separator' do filepath = fixture_path + 'cool-dois-without-yml.md' file = IO.read(filepath) separator = "READMORE" content = subject.summary(file, separator: separator) expect(content).to start_with("In 1998 Tim Berners-Lee coined") expect(content).to end_with("the referenced resource.") end it 'should truncate at separator and convert to html' do filepath = fixture_path + 'cool-dois-without-yml.md' file = IO.read(filepath) separator = "READMORE" html = Bergamasco::Markdown.render_html(file, skip_yaml_header: true, csl: 'spec/fixtures/apa.csl', bibliography: 'spec/fixtures/references.bib') content = subject.summary_from_html(html, separator: separator, skip_yaml_header: true, csl: 'spec/fixtures/apa.csl', bibliography: 'spec/fixtures/references.bib') expect(content).to start_with("In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change.") expect(content).to end_with("the referenced resource.") end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bergamasco-0.2.7 | spec/summarize_spec.rb |
bergamasco-0.2.6 | spec/summarize_spec.rb |
bergamasco-0.2.5 | spec/summarize_spec.rb |