From f72e2999b92084a8e2d0cef8bfb3b52607bc8dd5 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Tue, 14 Mar 2017 07:59:59 +0100 Subject: utf8.offset --- tests/lutf8lib.js | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tests/lutf8lib.js (limited to 'tests') 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 -- cgit v1.2.3-54-g00ecf