Sha256: 0f6082c11db4bc6dab796f9b0e351862cfeb2a6cff76504e64d0fc214849ebb2
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class FieldIntegerTest < ActiveSupport::TestCase def test_initialize_tag [ '{{ cms:field:content:integer }}', '{{cms:field:content:integer}}' ].each do |tag_signature| assert tag = CmsTag::FieldInteger.initialize_tag(cms_pages(:default), tag_signature) assert_equal 'content', tag.label end 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 5, tag.read_attribute(:content_integer) assert_equal '', tag.render end end
Version data entries
7 entries across 7 versions & 1 rubygems