Sha256: 2dd0043f226b3261d689978ab30fa4449b33e1a0d2a0810ce7b0dffda4fec320

Contents?: true

Size: 1022 Bytes

Versions: 9

Compression:

Stored size: 1022 Bytes

Contents

require File.dirname(__FILE__) + '/../../test_helper'

class PageStringTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    %w(
      <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
    %w(
      <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.read_attribute(:content_string)
    assert_equal 'test_content', tag.render
  end
  
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.9 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.7 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.6 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.5 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.4 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.3 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.2 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.1 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.0 test/unit/cms_tags/page_string_test.rb