gitlab-org--gitlab-foss/spec/contracts/provider/environments/test.rb

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