diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/test-apc5.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/test-apc5.py b/tests/test-apc5.py new file mode 100755 index 0000000..6cea3b1 --- /dev/null +++ b/tests/test-apc5.py @@ -0,0 +1,17 @@ +#!/usr/bin/python + +from fence_testing import test_action + +def main(): + DEVICE = "devices.d/apc-v5.cfg" + + ACT_STATUS = "actions.d/status.cfg" + ACT_ONOFF = "actions.d/power-on-off.cfg" + ACT_LIST = "actions.d/list.cfg" + + test_action(DEVICE, ACT_STATUS, "getopt", verbose=1) +# test_action(DEVICE, ACT_ONOFF, "stdin") + test_action(DEVICE, ACT_LIST, "getopt") + +if __name__ == "__main__": + main()
\ No newline at end of file |