Sha256: 038f962fd1731f776a3ab92713770f58f380a49e926237fb405298a52ddc1afe

Contents?: true

Size: 628 Bytes

Versions: 62

Compression:

Stored size: 628 Bytes

Contents

require 'test_helper'

module Workarea
  module Storefront
    class CategoriesPerformanceTest < Workarea::PerformanceTest

      setup :setup_category

      def setup_category
        Sidekiq::Callbacks.disable do
          @products = Array.new(Workarea.config.per_page) do
            create_complex_product
          end
        end

        BulkIndexProducts.perform_by_models(@products)
        @category = create_category(product_ids: @products.map(&:id))
      end

      def test_categories_with_complex_products
        get storefront.category_path(@category)
        assert(response.ok?)
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

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