diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-16 07:51:01 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-16 09:33:45 +0100 |
commit | ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d (patch) | |
tree | 48c6bc04cbe336a6f0ce44ec3a9a8ffd0ff6fae2 /tests | |
parent | 3a77114269b53fc57ff00342af18e71f97dcf590 (diff) | |
download | fengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.tar.gz fengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.tar.bz2 fengari-ebbcbf8484d74cfccd0b39abf661dbc14fd2dc5d.zip |
lua_pushnumber
Diffstat (limited to 'tests')
-rw-r--r-- | tests/C/Makefile | 8 | ||||
-rw-r--r-- | tests/C/lua_pushnumber.c | 21 | ||||
-rw-r--r-- | tests/lapi.js | 27 |
3 files changed, 56 insertions, 0 deletions
diff --git a/tests/C/Makefile b/tests/C/Makefile new file mode 100644 index 0000000..28ff1c2 --- /dev/null +++ b/tests/C/Makefile @@ -0,0 +1,8 @@ +CC= gcc-6 -std=gnu99 +CFLAGS= -g -Wall -Wextra + +LIBS= -lm -llua + +all: + $(CC) $(CFLAGS) $(LIBS) lua_pushnil.c -o lua_pushnil.out + $(CC) $(CFLAGS) $(LIBS) lua_pushnumber.c -o lua_pushnumber.out
\ No newline at end of file diff --git a/tests/C/lua_pushnumber.c b/tests/C/lua_pushnumber.c new file mode 100644 index 0000000..eca2564 --- /dev/null +++ b/tests/C/lua_pushnumber.c @@ -0,0 +1,21 @@ +#include <lua.h> +#include <lualib.h> +#include <lauxlib.h> +#include <stdlib.h> +#include <stdio.h> + +int main(void) { + + lua_State *L = luaL_newstate(); + + luaL_openlibs(L); + + lua_pushnumber(L, 10); + + printf("L->top(%d): %s\n", lua_gettop(L), luaL_typename(L, lua_gettop(L))); + + lua_close(L); + + return 0; + +}
\ No newline at end of file diff --git a/tests/lapi.js b/tests/lapi.js index 39477b2..251c5a8 100644 --- a/tests/lapi.js +++ b/tests/lapi.js @@ -36,4 +36,31 @@ test('luaL_newstate, lua_pushnil, lua_gettop, luaL_typename', function (t) { "nil", "Correct element(s) on the stack" ); +}); + + +test('lua_pushnumber', function (t) { + let L; + + t.plan(3); + + t.doesNotThrow(function () { + + L = lauxlib.luaL_newstate(); + + lapi.lua_pushnumber(L, 10); + + }, "JS Lua program ran without error"); + + t.strictEqual( + lapi.lua_gettop(L), + 1, + "top is correct" + ); + + t.strictEqual( + lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + "number", + "Correct element(s) on the stack" + ); });
\ No newline at end of file |