Module: ScrewUnit

Includes:
JsTestCore
Defined in:
lib/screw_unit.rb,
lib/screw_unit/representations/spec.html.rb

Defined Under Namespace

Modules: Representations

Class Method Summary collapse

Class Method Details

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



15
16
17
18
19
20
21
# File 'lib/screw_unit.rb', line 15

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