• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from OpenSSL.debug import _env_info
2from OpenSSL import version
3
4
5def test_debug_info():
6    """
7    Debug info contains correct data.
8    """
9    # Just check a sample we control.
10    assert version.__version__ in _env_info
11