Sha256: 06acc0ee5e5bbcd78d70ce48968330dd0bbec55db58836ca2b26cacf809f0106
Contents?: true
Size: 1.38 KB
Versions: 35
Compression:
Stored size: 1.38 KB
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class SnippetTagTest < ActiveSupport::TestCase def test_initialize_tag assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), '{{ cms:snippet:label }}' ) assert_equal 'label', tag.label assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), '{{cms:snippet:label}}' ) assert_equal 'label', tag.label assert tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), '{{cms:snippet:dash-label}}' ) assert_equal 'dash-label', tag.label end def test_initialize_tag_failure [ '{{cms:snippet}}', '{{cms:not_snippet:label}}', '{not_a_tag}' ].each do |tag_signature| assert_nil ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), tag_signature ) end end def test_content_and_render tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), '{{cms:snippet:default}}' ) assert_equal 'default_snippet_content', tag.content assert_equal 'default_snippet_content', tag.render tag = ComfortableMexicanSofa::Tag::Snippet.initialize_tag( cms_pages(:default), "{{cms:snippet:doesnot_exist}}" ) assert_equal nil, tag.content assert_equal '', tag.render end end
Version data entries
35 entries across 35 versions & 1 rubygems