blob: add0c24312e5bedede2afb552d26442ce39f2cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# frozen_string_literal: true
require 'support/proxy_server'
module ProxyHelper
def x509_certificate
License::Management.root.join("tmp/wildcard.test.crt")
end
end
RSpec.configure do |config|
config.include(ProxyHelper, type: :integration)
config.before(:suite) do
ProxyServer.instance.start
end
config.after(:suite) do
ProxyServer.instance.stop
end
end
|