Sha256: 87006dea6d1ec5218d9166f98e7109d167837d420cf3f71019f9139d4706f926

Contents?: true

Size: 1.65 KB

Versions: 12

Compression:

Stored size: 1.65 KB

Contents

require_relative '../../test_helper'

class PageRichTextTagTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
      comfy_cms_pages(:default), '{{ cms:page:content:rich_text }}'
    )
    assert_equal 'content', tag.identifier
    assert_nil tag.namespace
    assert tag = ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
      comfy_cms_pages(:default), '{{cms:page:content:rich_text}}'
    )
    assert_equal 'content', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
      comfy_cms_pages(:default), '{{cms:page:dash-content:rich_text}}'
    )
    assert_equal 'dash-content', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
      comfy_cms_pages(:default), '{{cms:page:namespace.content:rich_text}}'
    )
    assert_equal 'namespace.content', tag.identifier
    assert_equal 'namespace', tag.namespace
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:page:content:not_rich_text}}',
      '{{cms:page:content}}',
      '{{cms:not_page:content}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
        comfy_cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::PageRichText.initialize_tag(
      comfy_cms_pages(:default), '{{cms:page:content:rich_text}}'
    )
    assert tag.block.content.blank?
    tag.block.content = 'test_content'
    assert_equal 'test_content', tag.content
    assert_equal 'test_content', tag.render
  end
  
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.12.11 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.10 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.9 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.8 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.7 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.6 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.5 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.4 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.3 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.2 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.1 test/lib/tags/page_rich_text_test.rb
comfortable_mexican_sofa-1.12.0 test/lib/tags/page_rich_text_test.rb