summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/scenario.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/runtime/scenario.rb')
-rw-r--r--qa/qa/runtime/scenario.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/qa/runtime/scenario.rb b/qa/qa/runtime/scenario.rb
index 5067322804b..3662ebe671b 100644
--- a/qa/qa/runtime/scenario.rb
+++ b/qa/qa/runtime/scenario.rb
@@ -1,5 +1,7 @@
# frozen_string_literal: true
+require 'json'
+
module QA
module Runtime
##
@@ -24,6 +26,10 @@ module QA
end
end
+ def from_env(var)
+ JSON.parse(Runtime::Env.runtime_scenario_attributes).each { |k, v| define(k, v) }
+ end
+
def method_missing(name, *)
raise ArgumentError, "Scenario attribute `#{name}` not defined!"
end