diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-14 07:59:59 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-14 07:59:59 +0100 |
commit | f72e2999b92084a8e2d0cef8bfb3b52607bc8dd5 (patch) | |
tree | 936b014f71e33df7cf488de1ec694f25ae11c1d6 /tests | |
parent | 3ec4e9d919173429fa56841ce58b3214f7985077 (diff) | |
download | fengari-f72e2999b92084a8e2d0cef8bfb3b52607bc8dd5.tar.gz fengari-f72e2999b92084a8e2d0cef8bfb3b52607bc8dd5.tar.bz2 fengari-f72e2999b92084a8e2d0cef8bfb3b52607bc8dd5.zip |
utf8.offset
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lutf8lib.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/lutf8lib.js b/tests/lutf8lib.js new file mode 100644 index 0000000..3006bd4 --- /dev/null +++ b/tests/lutf8lib.js @@ -0,0 +1,39 @@ +"use strict"; + +const test = require('tape'); +const tests = require("./tests.js"); + +const lapi = require("../src/lapi.js"); +const lauxlib = require("../src/lauxlib.js"); +const linit = require('../src/linit.js'); + +test('utf8.offset', function (t) { + let luaCode = ` + return utf8.offset("( ͡° ͜ʖ ͡° )", 5) + `, L; + + t.plan(3); + + 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_tointeger(L, -1), + 7, + "Correct element(s) on the stack" + ); + +});
\ No newline at end of file |