Sha256: 3f74d057caf580df382ba5966ede1767a9b940c8a7beb3ea1ecbb10761852d1b

Contents?: true

Size: 1018 Bytes

Versions: 1

Compression:

Stored size: 1018 Bytes

Contents

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

class FieldIntegerTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    [
      '{ cms:field:content:integer }',
      '{cms:field:content:integer}'
    ].each do |tag_signature|
      assert tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), tag_signature)
      assert_equal 'content', tag.label
    end
  end
  
  def test_initialize_tag_failure
    [
      '{cms:field:content:not_integer}',
      '{cms:field:content}',
      '{cms:not_field:content}',
      'not_a_tag'
    ].each do |tag_signature|
      assert_nil CmsTag::FieldInteger.initialize_tag(cms_pages(:default), tag_signature)
    end
  end
  
  def test_content_and_render
    tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), '{cms:field:content:integer}')
    assert tag.content.blank?
    tag.content = '5'
    assert_equal 5, tag.content
    assert_equal 5, tag.read_attribute(:content_integer)
    assert_equal '', tag.render
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.0.10 test/unit/cms_tags/field_integer_test.rb