Source code for aiida.backends.tests.plugins.test_entry_point

# -*- coding: utf-8 -*-
###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
"""Tests for the :py:mod:`~aiida.plugins.entry_point` module."""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import

from aiida.backends.testbase import AiidaTestCase
from aiida.plugins.entry_point import validate_registered_entry_points


[docs]class TestEntryPoint(AiidaTestCase): """Tests for the :py:mod:`~aiida.plugins.entry_point` module."""
[docs] @staticmethod def test_validate_registered_entry_points(): """Test the `validate_registered_entry_points` function.""" validate_registered_entry_points()