Sha256: 6b12e1ab5792af74a59ec17748227a9b0ed4d94d9db7290aa49ed32d42f06f15

Contents?: true

Size: 638 Bytes

Versions: 62

Compression:

Stored size: 638 Bytes

Contents

require 'test_helper'

module Workarea
  module Search
    class Storefront
      class Product
        class InventoryTest < TestCase
          def test_skus_with_displayable_inventory
            create_inventory(id: '1', policy: 'standard', available: 0)
            create_inventory(id: '2', policy: 'ignore')
            product = create_product(
              variants: [{ sku: '1' }, { sku: '2' }]
            )

            results = Product.new(product).skus_with_displayable_inventory
            assert_equal(1, results.length)
            assert_equal('2', results.first)
          end
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.27 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.26 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.45 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.25 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.23 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.44 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.22 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.43 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.21 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.42 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.20 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.41 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.19 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.40 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.18 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.39 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.17 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.38 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.5.16 test/models/workarea/search/storefront/product/inventory_test.rb
workarea-core-3.4.37 test/models/workarea/search/storefront/product/inventory_test.rb