Sha256: 0fa59253fabf70de1e8cc85a170e88577a0ef09493ff3f9cabf7ee56fc09e53c

Contents?: true

Size: 1.15 KB

Versions: 25

Compression:

Stored size: 1.15 KB

Contents

require File.expand_path('../../test_helper', File.dirname(__FILE__))

class PageStringTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = CmsTag::PageString.initialize_tag(cms_pages(:default), '{{ cms:page:content:string }}')
    assert_equal 'content', tag.label
    assert tag = CmsTag::PageString.initialize_tag(cms_pages(:default), '{{cms:page:content:string}}')
    assert_equal 'content', tag.label
    assert tag = CmsTag::PageString.initialize_tag(cms_pages(:default), '{{cms:page:dash-content:string}}')
    assert_equal 'dash-content', tag.label
  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

25 entries across 25 versions & 2 rubygems

Version Path
comfortable_mexican_sofa-1.0.51 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.50 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.49 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.48 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.6 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.5 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.4 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.3 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.2 test/unit/cms_tags/page_string_test.rb
lucy_cms-0.0.1 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.47 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.46 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.45 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.44 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.43 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.42 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.41 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.40 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.39 test/unit/cms_tags/page_string_test.rb
comfortable_mexican_sofa-1.0.38 test/unit/cms_tags/page_string_test.rb