diff options
author | daurnimator <quae@daurnimator.com> | 2018-04-22 21:18:46 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-04-22 21:20:45 +1000 |
commit | 421b243fb88673709386661f6fb053ecef9e56e2 (patch) | |
tree | 723871a0a95ba068bc19dfff99af422732a85dff /test/loslib.test.js | |
parent | cb96b5d9527975424ddb70561fce87c947f9ba08 (diff) | |
download | fengari-421b243fb88673709386661f6fb053ecef9e56e2.tar.gz fengari-421b243fb88673709386661f6fb053ecef9e56e2.tar.bz2 fengari-421b243fb88673709386661f6fb053ecef9e56e2.zip |
src/loslib.js: Calculate yday of passed in Date, not the current date
Diffstat (limited to 'test/loslib.test.js')
-rw-r--r-- | test/loslib.test.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/loslib.test.js b/test/loslib.test.js index 02735cb..e2b626e 100644 --- a/test/loslib.test.js +++ b/test/loslib.test.js @@ -120,6 +120,7 @@ test('os.time normalisation of table', () => { assert(t.month == 2, "unmodified month") assert(t.year == 2018, "unmodified year") assert(t.wday == 3, "correct wday") + assert(t.yday == 51, "correct yday") `; lualib.luaL_openlibs(L); expect(lauxlib.luaL_loadstring(L, to_luastring(luaCode))).toBe(lua.LUA_OK); |