Sha256: 9a2b76ce70f7eb2f6709b74bc76fc72e91dbe4d1f24acfa3ebe75c2daefda130
Contents?: true
Size: 426 Bytes
Versions: 62
Compression:
Stored size: 426 Bytes
Contents
require 'test_helper' module Workarea module Catalog class ProductPlaceholderImageTest < TestCase def test_placeholder? assert(ProductPlaceholderImage.new.placeholder?) end def test_delegates_methods_to_its_asset image = ProductPlaceholderImage.new image.image = File.new(product_image_file_path) assert_equal(image.image.name, image.name) end end end end
Version data entries
62 entries across 62 versions & 1 rubygems