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