Sha256: dcb01d1d357041a051f26721637e1b0949347c853e703d4651a6364f2444e2aa
Contents?: true
Size: 655 Bytes
Versions: 62
Compression:
Stored size: 655 Bytes
Contents
require 'test_helper' module Workarea class ContentTest < Workarea::TestCase class Foo include Mongoid::Document include Contentable field :name, type: String end setup do @content = create_content end def test_defaulting_to_the_contentable_name model = Foo.new(name: 'Foo content') assert_equal(Content.new(contentable: model).name, 'Foo content') end def test_finding_content_by_block_id block = @content.blocks.create!(type: 'html') assert_equal(@content, Content.from_block(block.id)) assert_equal(@content, Content.from_block(block.id.to_s)) end end end
Version data entries
62 entries across 62 versions & 1 rubygems