Sha256: ab2a1b76a424c08772e32276e024fc029980e4908f2ae6658a8a0423ab885778
Contents?: true
Size: 1023 Bytes
Versions: 7
Compression:
Stored size: 1023 Bytes
Contents
require File.expand_path('../../test_helper', File.dirname(__FILE__)) class PageIntegerTest < ActiveSupport::TestCase def test_initialize_tag [ '{{ cms:page:content:integer }}', '{{cms:page:content:integer}}' ].each do |tag_signature| assert tag = CmsTag::PageInteger.initialize_tag(cms_pages(:default), tag_signature) assert_equal 'content', tag.label end end def test_initialize_tag_failure [ '{{cms:page:content:not_integer}}', '{{cms:page:content}}', '{{cms:not_page:content}}', '{not_a_tag}' ].each do |tag_signature| assert_nil CmsTag::PageInteger.initialize_tag(cms_pages(:default), tag_signature) end end def test_content_and_render tag = CmsTag::PageInteger.initialize_tag(cms_pages(:default), '{{cms:page:content:integer}}') assert tag.content.blank? tag.content = '5' assert_equal 5, tag.content assert_equal 5, tag.read_attribute(:content_integer) assert_equal '5', tag.render end end
Version data entries
7 entries across 7 versions & 1 rubygems