diff options
Diffstat (limited to 'qa/contracts/provider/environments/local.rb')
-rw-r--r-- | qa/contracts/provider/environments/local.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qa/contracts/provider/environments/local.rb b/qa/contracts/provider/environments/local.rb new file mode 100644 index 00000000000..0d472bc25e9 --- /dev/null +++ b/qa/contracts/provider/environments/local.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module Provider + module Environments + class Local < Base + def initialize + @base_url = ENV['CONTRACT_HOST'] + @merge_request = ENV['CONTRACT_MR'] + end + end + end +end |