Top Level Namespace

Defined Under Namespace

Modules: SetupConfiguration Classes: Array

Instance Method Summary collapse

Instance Method Details

#SetupConfiguration(name, abbreviation = name, &block) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'lib/setup_configuration.rb', line 3

def SetupConfiguration(name, abbreviation=name, &block)
  suite=SetupConfiguration::Suite.instance
  suite.name=name
  suite.abbreviation=abbreviation
  suite.instance_eval(&block)
  suite.validate_params()
rescue
  raise
end