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

test.rb « environments « provider « contracts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6efb19508d83ba56479fd2e91c373c35a83cd118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Provider
  module Environments
    class Test
      def self.app
        Rack::Builder.app do
          map "/" do
            run Gitlab::Application
          end
        end
      end
    end
  end
end