Sha256: 617d7505231b106672f53169627586cdfef85e7de745a769deeb2b9167057c5b
Contents?: true
Size: 993 Bytes
Versions: 15
Compression:
Stored size: 993 Bytes
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class PageStringTest < ActiveSupport::TestCase def test_initialize_tag [ '{{ cms:page:content:string }}', '{{cms:page:content:string}}' ].each do |tag_signature| assert tag = CmsTag::PageString.initialize_tag(cms_pages(:default), tag_signature) assert_equal 'content', tag.label end end def test_initialize_tag_failure [ '{{cms:page:content:not_string}}', '{{cms:page:content}}', '{{cms:not_page:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil CmsTag::PageString.initialize_tag(cms_pages(:default), tag_signature) end end def test_content_and_render tag = CmsTag::PageString.initialize_tag(cms_pages(:default), '{{cms:page:content:string}}') assert tag.content.blank? tag.content = 'test_content' assert_equal 'test_content', tag.content assert_equal 'test_content', tag.render end end
Version data entries
15 entries across 15 versions & 1 rubygems