diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-06 11:00:22 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-06 11:00:22 +0100 |
commit | c3c1ab50646165c0e43784acb30a353dc5b40d12 (patch) | |
tree | 81d8a0941f67330fa872d19f017f414f99b0ee0d /tests | |
parent | d792a7dad54039074890d9d379eec8676cb9fa5a (diff) | |
download | fengari-c3c1ab50646165c0e43784acb30a353dc5b40d12.tar.gz fengari-c3c1ab50646165c0e43784acb30a353dc5b40d12.tar.bz2 fengari-c3c1ab50646165c0e43784acb30a353dc5b40d12.zip |
string.upper/lower
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lstrlib.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/lstrlib.js b/tests/lstrlib.js index 494b881..7120525 100644 --- a/tests/lstrlib.js +++ b/tests/lstrlib.js @@ -78,4 +78,41 @@ test('string.char', function (t) { "hello", "Correct element(s) on the stack" ); +}); + + +test('string.upper, string.lower', function (t) { + let luaCode = ` + return string.upper("hello"), string.lower("HELLO") + `, L; + + t.plan(4); + + t.doesNotThrow(function () { + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lauxlib.luaL_loadstring(L, luaCode); + + }, "Lua program loaded without error"); + + t.doesNotThrow(function () { + + lapi.lua_call(L, 0, -1); + + }, "Lua program ran without error"); + + t.strictEqual( + lapi.lua_tostring(L, -2), + "HELLO", + "Correct element(s) on the stack" + ); + + t.strictEqual( + lapi.lua_tostring(L, -1), + "hello", + "Correct element(s) on the stack" + ); });
\ No newline at end of file |