#!/usr/bin/python3
"""
Pkgconf file handling for Fortran : tests

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

import dhfortran.pkgconf


def test_dh_fortran_pkgconf():
    print("DEBUG: test_dh_fortran_pkgconf called")
    pass


if __name__ == "__main__":
    import pytest

    pytest.main()
