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.4.27 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.4 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.26 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.3 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.25 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.2 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.24 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.1 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.23 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.22 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.0 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.21 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.5.0.beta.1 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.20 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.19 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.18 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.17 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.16 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.15 test/performance/workarea/storefront/categories_performance_test.rb
workarea-storefront-3.4.14 test/performance/workarea/storefront/categories_performance_test.rb