Sha256: fe65e31caec174a301c97d87fe09d0cc675e699f1aea9f6959d94bd9371bdf30

Contents?: true

Size: 1.33 KB

Versions: 12

Compression:

Stored size: 1.33 KB

Contents

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

class PageStringTagTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::PageString.initialize_tag(
      cms_pages(:default), '{{ cms:page:content:string }}'
    )
    assert_equal 'content', tag.label
    assert tag = ComfortableMexicanSofa::Tag::PageString.initialize_tag(
      cms_pages(:default), '{{cms:page:content:string}}'
    )
    assert_equal 'content', tag.label
    assert tag = ComfortableMexicanSofa::Tag::PageString.initialize_tag(
      cms_pages(:default), '{{cms:page:dash-content:string}}'
    )
    assert_equal 'dash-content', tag.label
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:page:content:not_string}}',
      '{{cms:page:content}}',
      '{{cms:not_page:content}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil ComfortableMexicanSofa::Tag::PageString.initialize_tag(
        cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::PageString.initialize_tag(
      cms_pages(:default), '{{cms:page:content:string}}'
    )
    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.5.11 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.10 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.9 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.8 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.7 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.6 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.5 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.4 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.3 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.2 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.1 test/unit/tags/page_string_test.rb
comfortable_mexican_sofa-1.5.0 test/unit/tags/page_string_test.rb