debian-mirror-gitlab/spec/contracts/provider/environments/test.rb
2022-07-23 20:15:48 +02:00

16 lines
243 B
Ruby

# 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