#!../../common/bats/bin/bats
# -*-sh-*-

load ../../common/test_helper_functions || exit 1
source ../../common/functions || exit 1

check_compiler_family CC CXX FC

family=$LMOD_FAMILY_COMPILER

@test "[Compilers] C compiler man page ($family)" {
    run man -w $CC
    assert_success
}

@test "[Compilers] C++ compiler man page ($family)" {
    run man -w $CXX
    assert_success
}

@test "[Compilers] Fortran compiler man page ($family)" {
    run man -w $FC
    assert_success
}




