Sha256: 617d7505231b106672f53169627586cdfef85e7de745a769deeb2b9167057c5b

Contents?: true

Size: 993 Bytes

Versions: 15

Compression:

Stored size: 993 Bytes

Contents

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

class PageStringTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    [
      '{{ cms:page:content:string }}',
      '{{cms:page:content:string}}'
    ].each do |tag_signature|
      assert tag = CmsTag::PageString.initialize_tag(cms_pages(:default), tag_signature)
      assert_equal 'content', tag.label
    end
  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 CmsTag::PageString.initialize_tag(cms_pages(:default), tag_signature)
    end
  end
  
  def test_content_and_render
    tag = CmsTag::PageString.initialize_tag(cms_pages(:default), '{{cms:page:content:string}}')
    assert tag.content.blank?
    tag.content = 'test_content'
    assert_equal 'test_content', tag.content
    assert_equal 'test_content', tag.render
  end
  
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.32 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.31 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.30 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.29 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.28 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.27 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.26 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.25 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.24 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.23 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.22 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.21 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.20 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.19 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.18 test/unit/cms_tags/page_string_test.rb