diff options
Diffstat (limited to 'tests/test.py')
-rwxr-xr-x | tests/test.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test.py b/tests/test.py new file mode 100755 index 0000000..8e82ed9 --- /dev/null +++ b/tests/test.py @@ -0,0 +1,21 @@ +#!/usr/bin/python + +from fence_testing import test_action + +def main(): + ## @todo: utility1 - run single 'agent' 'action' 'method' + ## @todo: utility2 - run complex tests (using utility1?) -> file with test suites + + AGENTDEF = "devices.d/true.cfg" + DUMMYDEF = "devices.d/dummy.cfg" + + ACT_STATUS = "actions.d/status.cfg" + ACT_ONOFF = "actions.d/power-on-off.cfg" + +# test_action(AGENTDEF, ACTIONDEF, "stdin") +# test_action(AGENTDEF, ACTIONDEF, "getopt") + test_action(DUMMYDEF, ACT_STATUS, "getopt") + test_action(DUMMYDEF, ACT_ONOFF, "getopt") + +if __name__ == "__main__": + main()
\ No newline at end of file |