Sha256: af3bb4e443dd3656f1ad86404b5f087d8c8d1c9340f9b5fff213bec1035383f3

Contents?: true

Size: 1.06 KB

Versions: 62

Compression:

Stored size: 1.06 KB

Contents

require 'test_helper'

module Workarea
  module Pricing
    class Discount
      module Conditons
        class UserTagsTest < TestCase
          class TestDiscount < Pricing::Discount
            include Conditions::UserTags
          end

          def test_user_tag?
            discount = TestDiscount.new
            refute(discount.user_tag?)

            discount.user_tags = ['foo']
            assert(discount.user_tag?)

            discount.user_tags_list = 'foo, bar'
            assert(discount.user_tag?)
          end

          def test_user_tags_qualify?
            order = Workarea::Order.new
            discount = TestDiscount.new

            assert(discount.user_tags_qualify?(order))

            discount.user_tags_list = 'foo, bar'
            refute(discount.user_tags_qualify?(order))

            user = create_user
            order.user_id = user.id
            refute(discount.user_tags_qualify?(order))

            user.update(tag_list: 'foo')
            assert(discount.user_tags_qualify?(order))
          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/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.26 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.45 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.25 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.23 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.44 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.22 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.43 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.21 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.42 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.20 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.41 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.19 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.40 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.18 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.39 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.17 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.38 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.5.16 test/models/workarea/pricing/discount/conditions/user_tags_test.rb
workarea-core-3.4.37 test/models/workarea/pricing/discount/conditions/user_tags_test.rb