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