Sha256: e17a4f914cfa78bd25a18fbe8270185c76c5819c7b321fdffdcac010b5310fa6

Contents?: true

Size: 354 Bytes

Versions: 62

Compression:

Stored size: 354 Bytes

Contents

require 'test_helper'

module Workarea
  class Content
    module Fields
      class AssetTest < TestCase
        def test_typecasting
          asset = Asset.new('foo')
          id = BSON::ObjectId.new

          assert_equal(id.to_s, asset.typecast(id))
          assert_equal(id.to_s, asset.typecast(id.to_s))
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 test/models/workarea/content/fields/asset_test.rb
workarea-core-3.4.12 test/models/workarea/content/fields/asset_test.rb