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

project.rb « flow « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 397806b33a3f36f066105df333639bd278b1fa91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module QA
  module Flow
    module Project
      module_function

      def go_to_create_project_from_template
        Page::Project::New.perform(&:click_create_from_template_link)
      end
    end
  end
end