diff options
Diffstat (limited to 'test/aft-BasicAPITests.lua')
-rw-r--r-- | test/aft-BasicAPITests.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/aft-BasicAPITests.lua b/test/aft-BasicAPITests.lua new file mode 100644 index 0000000..2806363 --- /dev/null +++ b/test/aft-BasicAPITests.lua @@ -0,0 +1,4 @@ +_AFT.testVerbStatusSuccess("Ping_verb_test", "helloworld", "ping", {}) +_AFT.testVerbStatusSuccess("TestArgs_verb_test", "helloworld", "testargs", { cezam = "open" }) +_AFT.testVerbStatusError("TestArgs_value_error_verb_test", "helloworld", "testargs", { cezam = "close" }) +_AFT.testVerbStatusError("TestArgs_key_error_verb_test", "helloworld", "testargs", { abracadabdra = "open" }) |