Sha256: 4995c63b33af1c18e27a9bf272ef6a5f03bc0de45ee9ba60d57c4d402b77814b

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

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

class FieldStringTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    [
      '{{ 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
    [
      '{{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

7 entries across 7 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.17 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.16 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.15 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.14 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.13 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.12 test/unit/cms_tags/field_string_test.rb
comfortable_mexican_sofa-1.0.11 test/unit/cms_tags/field_string_test.rb