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