Sha256: 9475b07a2bec7b71256d38527893177a2a7d3e5dc7a18a25251898b69a6f630c
Contents?: true
Size: 349 Bytes
Versions: 62
Compression:
Stored size: 349 Bytes
Contents
require 'test_helper' module Workarea class IndexSkusTest < Workarea::TestCase include TestCase::SearchIndexing def test_touching_the_product create_product(variants: [{ sku: 'SKU' }]) assert(Search::Storefront.count.zero?) IndexSkus.new.perform('SKU') assert_equal(Search::Storefront.count, 1) end end end
Version data entries
62 entries across 62 versions & 1 rubygems