Sha256: 8f534b4039be45c005c7d26dbb240e402970bf5f574eaefccd3328c60e68bd61

Contents?: true

Size: 1.62 KB

Versions: 13

Compression:

Stored size: 1.62 KB

Contents

require_relative '../../test_helper'

class PageMarkdownTagTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
      cms_pages(:default), '{{ cms:page:content:markdown }}'
    )
    assert_equal 'content', tag.identifier
    assert_nil tag.namespace
    assert tag = ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
      cms_pages(:default), '{{cms:page:content:markdown}}'
    )
    assert_equal 'content', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
      cms_pages(:default), '{{cms:page:dash-content:markdown}}'
    )
    assert_equal 'dash-content', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
      cms_pages(:default), '{{cms:page:namespace.content:markdown}}'
    )
    assert_equal 'namespace.content', tag.identifier
    assert_equal 'namespace', tag.namespace
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:page:content:not_markdown}}',
      '{{cms:page:content}}',
      '{{cms:not_page:content}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
        cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::PageMarkdown.initialize_tag(
      cms_pages(:default), '{{cms:page:content:markdown}}'
    )
    assert tag.block.content.blank?
    tag.block.content = '_test_content_'
    assert_equal '_test_content_', tag.content
    assert_equal "<p><em>test_content</em></p>\n", tag.render
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.11.2 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.11.1 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.11.0 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.10.3 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.10.2 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.10.1 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.10.0 test/lib/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.9.3 test/models/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.9.2 test/models/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.8.5 test/unit/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.9.1 test/models/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.9.0 test/models/tags/page_markdown_test.rb
comfortable_mexican_sofa-1.8.4 test/unit/tags/page_markdown_test.rb