Sha256: 30e9e5b846d57dd6a827fdf8600b8e6fb7ccf0ec816799018234d463d7c69869

Contents?: true

Size: 1.01 KB

Versions: 62

Compression:

Stored size: 1.01 KB

Contents

require 'test_helper'

module Workarea
  module Insights
    class NonSellersTest < TestCase
      def test_generate_weekly!
        create_product_by_week(
          product_id: 'foo',
          views: 1,
          reporting_on: Time.current.last_week
        )
        create_product_by_week(
          product_id: 'bar',
          views: 0,
          reporting_on: Time.current.last_week
        )
        create_product_by_week(
          product_id: 'baz',
          views: 2,
          orders: 1,
          reporting_on: Time.current.last_week
        )
        create_product_by_week(
          product_id: 'qoo',
          views_percentile: 100,
          reporting_on: 2.weeks.ago
        )

        NonSellers.generate_weekly!
        assert_equal(1, NonSellers.count)

        star_products = NonSellers.first
        assert_equal(1, star_products.results.size)
        assert_equal('foo', star_products.results.first['product_id'])
        assert_equal(1, star_products.results.first['views'])
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

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