Sha256: b21936a4c71178214624eea391c228d2e35abdc3ab3f8a6f45259a003f7cfa90
Contents?: true
Size: 1.57 KB
Versions: 13
Compression:
Stored size: 1.57 KB
Contents
require_relative '../../test_helper' class FieldIntegerTagTest < ActiveSupport::TestCase def test_initialize_tag assert tag = ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), '{{ cms:field:content:integer }}' ) assert_equal 'content', tag.identifier assert_nil tag.namespace assert tag = ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), '{{cms:field:content:integer}}' ) assert_equal 'content', tag.identifier assert tag = ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), '{{cms:field:dash-content:integer}}' ) assert_equal 'dash-content', tag.identifier assert tag = ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), '{{cms:field:namespace.content:integer}}' ) assert_equal 'namespace.content', tag.identifier assert_equal 'namespace', tag.namespace 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 ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), tag_signature ) end end def test_content_and_render tag = ComfortableMexicanSofa::Tag::FieldInteger.initialize_tag( cms_pages(:default), '{{cms:field:content:integer}}' ) assert tag.block.content.blank? tag.block.content = '5' assert_equal '5', tag.content assert_equal '', tag.render end end
Version data entries
13 entries across 13 versions & 1 rubygems