Method: OpenC3::Group#run_setup
- Defined in:
- lib/openc3/script/suite.rb
#run_setup ⇒ Object
433 434 435 436 437 438 439 440 |
# File 'lib/openc3/script/suite.rb', line 433 def run_setup result = nil if self.class.method_defined?(:setup) ScriptStatus.instance.status = "#{self.class} : setup" result = run_script(:setup) end result end |