#!/usr/bin/python3
"""
Test Driver for dh_fortran_lib

Copyright (C) 2025 Alastair McKinstry <mckinstry@debian.org>
Released under the GPL-3 Gnu Public License.
"""

import dhfortran.lib


def test_dh_fortran_lib():
    """Install libs in appropriate directory"""
    pass


if __name__ == "__main__":
    import pytest

    pytest.main()
