#  tests for sphinx-prompt-1.4.0-pyhd8ed1ab_0 (this is a generated file);
print('===== testing package: sphinx-prompt-1.4.0-pyhd8ed1ab_0 =====');
print('running run_test.py');
#  --- run_test.py (begin) ---
"""Tests for sphinx-prompt.

Because sphinx-prompt has not unit tests of its own and can't be traditionally
imported (its package name in ``sphinx-prompt``), the strategy here is to
test if Sphinx can load sphinx-prompt as an extension.
"""

from importlib import import_module


def main():
    extension_name = "sphinx-prompt"

    # Test that the extension is importable
    mod = import_module(extension_name)

    # Sphinx extensions need a setup function
    setup = getattr(mod, 'setup', None)
    assert setup is not None


if __name__ == '__main__':
    main()
#  --- run_test.py (end) ---

print('===== sphinx-prompt-1.4.0-pyhd8ed1ab_0 OK =====');
