Sha256: 4a07b3ea8639210acc6420756e74ab17abe17a7390d35e76a5cb0253b0e3fca8

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

require_relative '../../test_helper'

class SnippetTagTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      comfy_cms_pages(:default), '{{ cms:snippet:label }}'
    )
    assert_equal 'label', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      comfy_cms_pages(:default), '{{cms:snippet:label}}'
    )
    assert_equal 'label', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      comfy_cms_pages(:default), '{{cms:snippet:dash-label}}'
    )
    assert_equal 'dash-label', tag.identifier
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:snippet}}',
      '{{cms:not_snippet:label}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
        comfy_cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      comfy_cms_pages(:default), '{{cms:snippet:default}}'
    )
    assert_equal 'default_snippet_content', tag.content
    assert_equal 'default_snippet_content', tag.render
    
    tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      comfy_cms_pages(:default), "{{cms:snippet:doesnot_exist}}"
    )
    assert_nil tag.content
    assert_equal '', tag.render
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.12.11 test/lib/tags/snippet_test.rb
comfortable_mexican_sofa-1.12.10 test/lib/tags/snippet_test.rb