Sha256: 29c3ecce5cfad283a77a41f6c89b21d7c8305674e51eb7c255a368d150f483c1

Contents?: true

Size: 1012 Bytes

Versions: 9

Compression:

Stored size: 1012 Bytes

Contents

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

class FieldStringTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    %w(
      <cms:field:content:string/>
      <cms:field:content:string>
      <cms:field:content>
    ).each do |tag_signature|
      assert tag = CmsTag::FieldString.initialize_tag(cms_pages(:default), tag_signature)
      assert_equal 'content', tag.label
    end
  end
  
  def test_initialize_tag_failure
    %w(
      <cms:field:content:not_string/>
      <cms:not_field:content/>
      not_a_tag
    ).each do |tag_signature|
      assert_nil CmsTag::FieldString.initialize_tag(cms_pages(:default), tag_signature)
    end
  end
  
  def test_content_and_render
    tag = CmsTag::FieldString.initialize_tag(cms_pages(:default), "<cms:field:content>")
    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 '', 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_string_test.rb
comfortable_mexican_sofa-1.0.7 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.6 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.5 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.4 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.3 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.2 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.1 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.0 test/unit/cms_tags/field_string_test.rb