Method: Module#etest

Defined in:
lib/module_ext.rb

#etestObject

reloads the module, and runs the module’s etests.



15
16
17
18
# File 'lib/module_ext.rb', line 15

def etest
  reload if respond_to?(:reload)
  ::Etest.run self.const_get("Etest")
end