File: test_meta.py

package info (click to toggle)
cwl-utils 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,164 kB
  • sloc: python: 88,875; makefile: 141; javascript: 91
file content (10 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# SPDX-License-Identifier: Apache-2.0
"""Test __meta__ properties."""

from cwl_utils.__meta__ import __version__


def test_graph_split() -> None:
    """Confirm that __version__ exists and is a string."""
    assert __version__
    assert isinstance(__version__, str)