ansible/test/runner/lib/__init__.py
Matt Clay 3f2b766d10 Add future and metaclass boilerplate to test code.
Continue to ignore:

- test/integration/
- test/legacy/
- test/units/
2019-07-12 09:18:24 -07:00

3 lines
143 B
Python

"""Support code for Ansible testing infrastructure."""
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type