Sha256: 6efcdd13054d0aecda7175e043c47dd674da94ec2a8a9185ea728f79c268badb

Contents?: true

Size: 1.18 KB

Versions: 25

Compression:

Stored size: 1.18 KB

Contents

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

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

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
comfortable_mexican_sofa-1.0.51 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.50 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.49 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.48 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.6 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.5 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.4 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.3 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.2 test/unit/cms_tags/snippet_test.rb
lucy_cms-0.0.1 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.47 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.46 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.45 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.44 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.43 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.42 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.41 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.40 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.39 test/unit/cms_tags/snippet_test.rb
comfortable_mexican_sofa-1.0.38 test/unit/cms_tags/snippet_test.rb