Sha256: 108a93b2155710bf5c252a20b0ab69860dd35bd6acdc4f89be78bfa826d0e986

Contents?: true

Size: 1.45 KB

Versions: 16

Compression:

Stored size: 1.45 KB

Contents

# frozen_string_literal: true

require 'rails_helper'

describe DocTemplate::Tags::StandardTag do
  let(:original_content) do
    <<-HTML
      <ul class="lst-kix_nxend745gryj-0 start">
        <li class='preserved-cls'><span>Use words and phrases acquired through conversations, reading and being read to, and responding to the text </span><span>[</span><span>#{standard_name}</span><span>].</span></li>
        <li><span>Prior to listening to </span><span>The Fisherman and His Wife</span><span>, orally predict which character has magical powers and then compare the actual outcome to the prediction</span><span>.</span></li>
      </ul>
    HTML
  end
  let(:standard_name) { 'L.2.6' }
  let(:tag) { described_class.new }
  let(:node) do
    html = Nokogiri::HTML original_content
    html.at_xpath('*//li') # it's the parent node of the one containing the tag itself
  end

  subject { tag.parse(node, {}).content }

  it 'fetches DB for the description of a stadard' do
    expect(Lcms::Engine::Standard).to receive(:search_by_name).with(standard_name.downcase.to_sym).and_call_original
    subject
  end

  it 'renders corresponding template' do
    expect(ERB).to receive_message_chain(:new, :result).and_return('')
    subject
  end

  context 'when node is a list' do
    subject { tag.parse(node, {}).render }

    it 'preserves <li> markup with class' do
      expect(subject).to include '<li class="preserved-cls">'
      expect(subject).to include '</li>'
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
lcms-engine-0.5.5 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.5.4 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.5.3 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.5.2 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.5.1 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.5.0 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.4.2 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.4.1 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.4.0 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.3.1 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.1.4 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.3.0 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.1.3 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.2.0 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.1.2 spec/lib/doc_template/tags/stadard_tag_spec.rb
lcms-engine-0.1.0 spec/lib/doc_template/tags/stadard_tag_spec.rb