Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trial_status_widget_test_helper.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d75620d17ee30e76bdc498737a32f1008444dce7 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module TrialStatusWidgetTestHelper
  def purchase_href(group)
    new_subscriptions_path(namespace_id: group.id, plan_id: 'ultimate-plan-id')
  end
end

TrialStatusWidgetTestHelper.prepend_mod