Sha256: cd9d307b318e83b44d68ca9a5f985e2806b1266ad4e5312065c265db8110cf79
Contents?: true
Size: 1.14 KB
Versions: 25
Compression:
Stored size: 1.14 KB
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class FieldIntegerTest < ActiveSupport::TestCase def test_initialize_tag assert tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), '{{ cms:field:content:integer }}') assert_equal 'content', tag.label assert tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), '{{cms:field:content:integer}}') assert_equal 'content', tag.label assert tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), '{{cms:field:dash-content:integer}}') assert_equal 'dash-content', tag.label end def test_initialize_tag_failure [ '{{cms:field:content:not_integer}}', '{{cms:field:content}}', '{{cms:not_field:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil CmsTag::FieldInteger.initialize_tag(cms_pages(:default), tag_signature) end end def test_content_and_render tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), '{{cms:field:content:integer}}') assert tag.content.blank? tag.content = '5' assert_equal '5', tag.content assert_equal '', tag.render end end
Version data entries
25 entries across 25 versions & 2 rubygems