Sha256: b721b5285296863f7aac15547767ba61a8d8b3d114a4f9f98ec0d958a47fb3a4
Contents?: true
Size: 1 KB
Versions: 9
Compression:
Stored size: 1 KB
Contents
require File.dirname(__FILE__) + '/../../test_helper' class PageTextTest < ActiveSupport::TestCase def test_initialize_tag %w( <cms:page:content:text/> <cms:page:content/> <cms:page:content> <cms:page:content:text> ).each do |tag_signature| assert tag = CmsTag::PageText.initialize_tag(cms_pages(:default), tag_signature) assert_equal 'content', tag.label end end def test_initialize_tag_failure %w( <cms:page:content:not_text/> <cms:not_page:content/> not_a_tag ).each do |tag_signature| assert_nil CmsTag::PageText.initialize_tag(cms_pages(:default), tag_signature) end end def test_content_and_render tag = CmsTag::PageText.initialize_tag(cms_pages(:default), "<cms:page:content>") assert tag.content.blank? tag.content = 'test_content' assert_equal 'test_content', tag.content assert_equal 'test_content', tag.read_attribute(:content_text) assert_equal 'test_content', tag.render end end
Version data entries
9 entries across 9 versions & 1 rubygems