Files
mongo/buildscripts/resmokelib/testing/hooks/__init__.py
Max Hirschhorn b8f6239094 SERVER-29560 Split hooks.py module into separate files.
Also defines a generic Registry metaclass for making class declarations
store a reference to the class along with a name so that they can be
looked up later.
2017-06-14 20:44:52 -04:00

16 lines
515 B
Python

"""
Package containing classes to customize the behavior of a test fixture
by allowing special code to be executed before or after each test, and
before or after each suite.
"""
from __future__ import absolute_import
from .interface import make_custom_behavior
from ...utils import autoloader as _autoloader
# We dynamically load all modules in the hooks/ package so that any CustomBehavior classes declared
# within them are automatically registered.
_autoloader.load_all_modules(name=__name__, path=__path__)