blob: a2ce07ec670918489fa1de226479444d145c016e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
require 'rails_helper'
RSpec.describe SolidusSubscriptions::SubscriptionPromotionRule do
let(:rule) { described_class.new }
describe '#applicable' do
subject { rule.applicable? promotable }
context 'when the promotable is a Spree::Order' do
let(:promotable) { build_stubbed :order }
it { is_expected.to be_truthy }
end
context 'when the promotable is not a Spree::Order' do
let(:promotable) { build_stubbed :line_item }
it { is_expected.to be_falsy }
end
end
describe '#eligible?' do
subject { rule.eligible? order }
let(:order) { create(:order, line_items: line_items) }
context 'when the order contains a line item with a subscription' do
let(:line_items) { build_list(:line_item, 1, :with_subscription_line_items) }
it { is_expected.to be_truthy }
end
context 'when the order contains a line item with a subscription' do
let(:line_items) { build_list(:line_item, 1) }
it { is_expected.to be_falsy }
end
end
describe '#actionable?' do
subject { rule.actionable? line_item }
context 'when the line item has a subscription' do
let(:line_item) { build_stubbed(:line_item, :with_subscription_line_items) }
it { is_expected.to be_truthy }
end
context 'when the line item has no subscription' do
let(:line_item) { build_stubbed :line_item }
it { is_expected.to be_falsy }
end
end
end
|