summaryrefslogtreecommitdiffstats
path: root/tests/python/test_import.py
blob: db12729574b1ec1f081d876cd8839f0447c0a9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

import hamcrest


def test_import():
    """Ensure that LSP types are importable."""
    import lsprotocol.types as lsp

    hamcrest.assert_that(lsp.MarkupKind.Markdown.value, hamcrest.is_("markdown"))