diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-20 02:06:34 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-22 19:18:15 +0200 |
commit | cac744e729cd8176330f57d02cdef9ed160919d8 (patch) | |
tree | c6c344a2992d38587fde2c2afd751beb63edebb3 /test/afb-test/tests/aftTest.lua | |
parent | 4f0fc5c1b993b6590c98a4d2d82a9b343875dad5 (diff) |
Be able to launch several verb in a row
You must not specify the _AFT.exitAtEnd in your LUA files if you want
to be able to chain test verb calls. Else it will exit during the file which
has specified the exitAtEnd call.
Change-Id: I3e7f4c6efadcbada426176f51bd709413f1c7405
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'test/afb-test/tests/aftTest.lua')
-rw-r--r-- | test/afb-test/tests/aftTest.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/afb-test/tests/aftTest.lua b/test/afb-test/tests/aftTest.lua index 5c11d1d..4315505 100644 --- a/test/afb-test/tests/aftTest.lua +++ b/test/afb-test/tests/aftTest.lua @@ -105,5 +105,3 @@ _AFT.describe("testAssertVerbCb",function() _AFT.assertVerbCb('aft', 'ping', {}, _AFT.describe("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('aft', 'pingfail', {}) end) _AFT.describe("testAssertVerbResponseEqualsError",function() _AFT.assertVerbResponseEqualsError('aft', 'nonexistentverb', {},"Ping Binder Daemon fails") end) _AFT.describe("testAssertVerbCbError",function() _AFT.assertVerbCbError('aft', 'pingfail', {},_callbackError) end) - -_AFT.exitAtEnd() |