blob: 972389c0fe15adb506b7844b25285d4477e61137 [file]
############################################################################
# Copyright (C) SchedMD LLC.
############################################################################
import re
import atf
def test_help():
"""Verify squeue --help displays the help page"""
output = atf.run_command_output("squeue --help", fatal=True)
assert re.search(r"Usage: squeue \[OPTIONS\]", output) is not None
assert re.search(r"Help options:", output) is not None