Sha256: 4476006c2e9c98fadc212088bc52ccb1a3921f97bd3c9cb380a2f7a2e64c04d6

Contents?: true

Size: 1.4 KB

Versions: 36

Compression:

Stored size: 1.4 KB

Contents

require File.expand_path('../../test_helper', File.dirname(__FILE__))

class SnippetTagTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      cms_pages(:default), '{{ cms:snippet:label }}'
    )
    assert_equal 'label', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      cms_pages(:default), '{{cms:snippet:label}}'
    )
    assert_equal 'label', tag.identifier
    assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      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(
        cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag(
      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(
      cms_pages(:default), "{{cms:snippet:doesnot_exist}}"
    )
    assert_equal nil, tag.content
    assert_equal '', tag.render
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.6.31 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.8.3 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.8.2 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.8.1 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.8.0 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.30 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.7.3 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.7.1 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.7.0 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.26 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.25 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.24 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.23 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.22 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.21 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.20 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.19 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.18 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.17 test/unit/tags/snippet_test.rb
comfortable_mexican_sofa-1.6.16 test/unit/tags/snippet_test.rb