Module: ScrewUnit

Includes:
JsTestCore
Defined in:
lib/screw_unit.rb

Class Method Summary collapse

Class Method Details

.method_missing(method_name, *args, &block) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/screw_unit.rb', line 13

def method_missing(method_name, *args, &block)
  if JsTestCore::Configuration.instance.respond_to?(method_name)
    JsTestCore::Configuration.instance.send(method_name, *args, &block)
  else
    super
  end
end