blob: 48eb09ad98ddf6b0612cd9e18fd9dfcbe6c15712 [file] [log] [blame]
############################################################################
# Copyright (C) SchedMD LLC.
############################################################################
import atf
import re
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