Sha256: f3c23a38c1ee08405a0e804a99ec5a533fff29fab557a3fb5f6eb873948836f5

Contents?: true

Size: 980 Bytes

Versions: 9

Compression:

Stored size: 980 Bytes

Contents

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

class FieldTextTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    %w(
      <cms:field:content:text/>
      <cms:field:content:text>
    ).each do |tag_signature|
      assert tag = CmsTag::FieldText.initialize_tag(cms_pages(:default), tag_signature)
      assert_equal 'content', tag.label
    end
  end
  
  def test_initialize_tag_failure
    %w(
      <cms:field:content:not_text/>
      <cms:not_field:content:text/>
      not_a_tag
    ).each do |tag_signature|
      assert_nil CmsTag::FieldText.initialize_tag(cms_pages(:default), tag_signature)
    end
  end
  
  def test_content_and_render
    tag = CmsTag::FieldText.initialize_tag(cms_pages(:default), "<cms:field:content:text>")
    assert tag.content.blank?
    tag.content = 'test_content'
    assert_equal 'test_content', tag.content
    assert_equal 'test_content', tag.read_attribute(:content_text)
    assert_equal '', 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/field_text_test.rb
comfortable_mexican_sofa-1.0.7 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.6 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.5 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.4 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.3 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.2 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.1 test/unit/cms_tags/field_text_test.rb
comfortable_mexican_sofa-1.0.0 test/unit/cms_tags/field_text_test.rb