Sha256: 7e274baefd159f1cf48c80d4f25fb84de63742ff5d1f9917fb5f9feed171bf73
Contents?: true
Size: 1.61 KB
Versions: 12
Compression:
Stored size: 1.61 KB
Contents
require_relative '../../test_helper' class FieldBooleanTagTest < ActiveSupport::TestCase def test_initialize_tag assert tag = ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), '{{ cms:field:content:boolean }}' ) assert_equal 'content', tag.identifier assert_nil tag.namespace assert tag = ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), '{{cms:field:content:boolean}}' ) assert_equal 'content', tag.identifier assert tag = ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), '{{cms:field:dash-content:boolean}}' ) assert_equal 'dash-content', tag.identifier assert tag = ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), '{{cms:field:namespace.content:boolean}}' ) assert_equal 'namespace.content', tag.identifier assert_equal 'namespace', tag.namespace end def test_initialize_tag_failure [ '{{cms:field:content:not_boolean}}', '{{cms:field:content}}', '{{cms:not_field:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), tag_signature ) end end def test_content_and_render tag = ComfortableMexicanSofa::Tag::FieldBoolean.initialize_tag( comfy_cms_pages(:default), '{{cms:field:content:boolean}}' ) assert tag.block.content.blank? tag.block.content = 'TRUE' assert_equal 'TRUE', tag.content assert_equal '', tag.render end end
Version data entries
12 entries across 12 versions & 1 rubygems