Sha256: 99cf9cdc4f62cc7345e0149d43e30fc5a3b7361440db2b551675e98f17dbdd19
Contents?: true
Size: 462 Bytes
Versions: 7
Compression:
Stored size: 462 Bytes
Contents
require 'open-uri' module Awetestlib class Runner def initialize(options = {}) build_class = "Awetestlib::#{check_script_type(options[:script_type])}::Runner".constantize build_class.new(options).start end def check_script_type(script_type) case script_type when "Regression" ; "Regression" #Should this be regression? possible rename else ; script_type end end end end
Version data entries
7 entries across 7 versions & 1 rubygems