diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-21 21:28:48 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-21 22:02:10 +1000 |
commit | 858fc960e1f70d22c315f0d598e500f87ddcaf8c (patch) | |
tree | dfaeeffeef2ee755b8eca75d78b81d81f17b6331 | |
parent | 53ce9e12d780c65188236c028a618550b7b87e20 (diff) | |
download | fengari-858fc960e1f70d22c315f0d598e500f87ddcaf8c.tar.gz fengari-858fc960e1f70d22c315f0d598e500f87ddcaf8c.tar.bz2 fengari-858fc960e1f70d22c315f0d598e500f87ddcaf8c.zip |
tests/test-suite/attrib.js: Now passes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | tests/test-suite/attrib.js (renamed from tests/test-suite/inprogress/attrib.js) | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -53,6 +53,7 @@ IRC: #fengari on freenode - [x] C API - [x] Auxiliary library - [ ] Run [Lua test suite](https://github.com/lua/tests) + - [x] `attrib.lua` - [x] `bitwise.lua` (16/16) - [x] `calls.lua` (32/32) - [x] `closure.lua` (16/16) @@ -72,7 +73,6 @@ IRC: #fengari on freenode - [ ] `tpack.lua` (20/32) - [ ] `utf8.lua` (14/20) - [ ] `api.lua` - - [ ] `attrib.lua` - [ ] `big.lua` - [ ] `code.lua` - [ ] `db.lua` diff --git a/tests/test-suite/inprogress/attrib.js b/tests/test-suite/attrib.js index b5926b7..ca23d26 100644 --- a/tests/test-suite/inprogress/attrib.js +++ b/tests/test-suite/attrib.js @@ -4,9 +4,9 @@ const test = require('tape'); global.WEB = false; -const lua = require('../../../src/lua.js'); -const lauxlib = require('../../../src/lauxlib.js'); -const lualib = require('../../../src/lualib.js'); +const lua = require('../../src/lua.js'); +const lauxlib = require('../../src/lauxlib.js'); +const lualib = require('../../src/lualib.js'); test("[test-suite] attrib: testing require", function (t) { |