Sha256: 58fb824726485f0eb32ecc9318cad2f761fc9a628a36aec5741976998e3bdfff

Contents?: true

Size: 1.6 KB

Versions: 11

Compression:

Stored size: 1.6 KB

Contents

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

class HelperTest < ActiveSupport::TestCase
  
  def test_initialize_tag
    assert tag = ComfortableMexicanSofa::Tag::Helper.initialize_tag(
      cms_pages(:default), '{{ cms:helper:method_name }}'
    )
    assert_equal 'method_name', tag.label
    assert tag = ComfortableMexicanSofa::Tag::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 = ComfortableMexicanSofa::Tag::Helper.initialize_tag(
      cms_pages(:default), '{{ cms:helper:method_name:param1:param2 }}'
    )
    assert_equal 'method_name', tag.label
    assert_equal ['param1', 'param2'], tag.params
  end
  
  def test_initialize_tag_failure
    [
      '{{cms:helper}}',
      '{{cms:not_helper:method_name}}',
      '{not_a_tag}'
    ].each do |tag_signature|
      assert_nil ComfortableMexicanSofa::Tag::Helper.initialize_tag(
        cms_pages(:default), tag_signature
      )
    end
  end
  
  def test_content_and_render
    tag = ComfortableMexicanSofa::Tag::Helper.initialize_tag(
      cms_pages(:default), '{{cms:helper:method_name}}'
    )
    assert_equal "<%= method_name() %>", tag.content
    assert_equal "<%= method_name() %>", tag.render
    
    tag = ComfortableMexicanSofa::Tag::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

11 entries across 11 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.3.8 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.7 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.6 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.5 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.4 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.3 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.2 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.1 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.3.0 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.2.8 test/unit/tags/helper_test.rb
comfortable_mexican_sofa-1.2.7 test/unit/tags/helper_test.rb