Commit 5264399c authored by Dallas Reedy's avatar Dallas Reedy

Cover all 4 possible combos of eligible_for_trial_status_widget? values

parent eb55f93a
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
require 'spec_helper' require 'spec_helper'
RSpec.describe TrialStatusWidgetHelper do RSpec.describe TrialStatusWidgetHelper do
using RSpec::Parameterized::TableSyntax
describe '#billing_plans_and_trials_available?' do describe '#billing_plans_and_trials_available?' do
before do before do
stub_application_setting(check_namespace_plan: trials_available) stub_application_setting(check_namespace_plan: trials_available)
...@@ -24,7 +26,7 @@ RSpec.describe TrialStatusWidgetHelper do ...@@ -24,7 +26,7 @@ RSpec.describe TrialStatusWidgetHelper do
end end
describe '#eligible_for_trial_status_widget?' do describe '#eligible_for_trial_status_widget?' do
let_it_be(:user) { create(:user) } let(:user) { instance_double(User) }
let(:group) { instance_double(Group, trial_active?: trial_active) } let(:group) { instance_double(Group, trial_active?: trial_active) }
let(:user_can_admin_group) { true } let(:user_can_admin_group) { true }
...@@ -36,32 +38,19 @@ RSpec.describe TrialStatusWidgetHelper do ...@@ -36,32 +38,19 @@ RSpec.describe TrialStatusWidgetHelper do
subject { helper.eligible_for_trial_status_widget?(group) } subject { helper.eligible_for_trial_status_widget?(group) }
context 'when the group has an active trial' do where :trial_active, :user_can_admin_group, :expected_result do
let(:trial_active) { true } true | true | true
true | false | false
context 'and the user can admin the group' do false | true | false
let(:user_can_admin_group) { true } false | false | false
it { is_expected.to be_truthy }
end
context 'but the user cannot admin the group' do
let(:user_can_admin_group) { false }
it { is_expected.to be_falsey }
end
end end
context 'when the group does not have an active trial' do with_them do
let(:trial_active) { false } it { is_expected.to eq(expected_result) }
it { is_expected.to be_falsey }
end end
end end
describe '#plan_title_for_group' do describe '#plan_title_for_group' do
using RSpec::Parameterized::TableSyntax
let_it_be(:group) { create(:group) } let_it_be(:group) { create(:group) }
subject { helper.plan_title_for_group(group) } subject { helper.plan_title_for_group(group) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment