Sha256: f3e10482f55f45a1a05a4218c47a74e42dc60d7c9d86fadf6ea13eadcf661b43

Contents?: true

Size: 1.39 KB

Versions: 25

Compression:

Stored size: 1.39 KB

Contents

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

class HelperTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = CmsTag::Helper.initialize_tag(cms_pages(:default), '{{ cms:helper:method_name }}')
    assert_equal 'method_name', tag.label
    assert tag = CmsTag::Helper.initialize_tag(cms_pages(:default), '{{ cms:helper:method-name }}')
    assert_equal 'method-name', tag.label
  end
  
  def test_initialize_tag_with_parameters
    assert tag = CmsTag::Helper.initialize_tag(cms_pages(:default), '{{ cms:helper:method_name:param1:param2 }}')
    assert tag.label = 'method_name'
    assert tag.params = 'param1:param2'
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:helper}}',
      '{{cms:not_helper:method_name}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil CmsTag::Helper.initialize_tag(cms_pages(:default), tag_signature)
    end
  end
  
  def test_content_and_render
    tag = CmsTag::Helper.initialize_tag(cms_pages(:default), '{{cms:helper:method_name}}')
    assert_equal "<%= method_name() %>", tag.content
    assert_equal "<%= method_name() %>", tag.render
    
    tag = CmsTag::Helper.initialize_tag(cms_pages(:default), '{{cms:helper:method_name:param1:param2}}')
    assert_equal "<%= method_name('param1', 'param2') %>", tag.content
    assert_equal "<%= method_name('param1', 'param2') %>", 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/helper_test.rb
comfortable_mexican_sofa-1.0.50 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.49 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.48 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.6 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.5 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.4 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.3 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.2 test/unit/cms_tags/helper_test.rb
lucy_cms-0.0.1 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.47 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.46 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.45 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.44 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.43 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.42 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.41 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.40 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.39 test/unit/cms_tags/helper_test.rb
comfortable_mexican_sofa-1.0.38 test/unit/cms_tags/helper_test.rb