Sha256: c2bc5351cfbfce66e7c90a6d44ad36a08ef81080f8d9314fa7d61a58929efe73
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 KB
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class PageTextTagTest < ActiveSupport::TestCase def test_initialize_tag assert tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{ cms:page:content:text }}' ) assert_equal 'content', tag.identifier assert_nil tag.namespace assert tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{cms:page:content}}' ) assert_equal 'content', tag.identifier assert tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{cms:page:content:text}}' ) assert_equal 'content', tag.identifier assert tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{cms:page:dash-content}}' ) assert_equal 'dash-content', tag.identifier assert tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{cms:page:namespace.content}}' ) assert_equal 'namespace.content', tag.identifier assert_equal 'namespace', tag.namespace end def test_initialize_tag_failure [ '{{cms:page:content:not_text}}', '{{cms:not_page:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), tag_signature ) end end def test_content_and_render tag = ComfyPress::Tag::PageText.initialize_tag( cms_pages(:default), '{{cms:page:content}}' ) assert tag.block.content.blank? tag.block.content = 'test_content' assert_equal 'test_content', tag.content assert_equal 'test_content', tag.render end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
comfypress-0.1.4 | test/unit/tags/page_text_test.rb |
comfypress-0.1.3 | test/unit/tags/page_text_test.rb |