Sha256: 2d2d6ffafbea2430f489594de215024bebdfdf8d4446853fd990674d35b3b0d8
Contents?: true
Size: 1.45 KB
Versions: 12
Compression:
Stored size: 1.45 KB
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class FieldStringTagTest < ActiveSupport::TestCase def test_initialize_tag assert tag = ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), '{{ cms:field:content:string }}' ) assert_equal 'content', tag.label assert tag = ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), '{{cms:field:content:string}}' ) assert_equal 'content', tag.label assert tag = ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), '{{cms:field:content}}' ) assert_equal 'content', tag.label assert tag = ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), '{{cms:field:dash-content}}' ) assert_equal 'dash-content', tag.label end def test_initialize_tag_failure [ '{{cms:field:content:not_string}}', '{{cms:not_field:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), tag_signature ) end end def test_content_and_render tag = ComfortableMexicanSofa::Tag::FieldString.initialize_tag( cms_pages(:default), '{{cms:field:content}}' ) assert tag.block.content.blank? tag.block.content = 'test_content' assert_equal 'test_content', tag.content assert_equal '', tag.render end end
Version data entries
12 entries across 12 versions & 1 rubygems