We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebba6a1 commit a01193bCopy full SHA for a01193b
src/array.lua
@@ -14,7 +14,7 @@ end
14
local array
15
16
array = {
17
- __VERSION = '1.2.6',
+ __VERSION = '1.3.0',
18
__DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array",
19
__LICENSE = [[
20
The MIT License (MIT)
test.lua
@@ -1,8 +1,10 @@
1
+package.path = "./src/?.lua;" .. package.path
2
+
3
local array = require './src/array'
4
local test = require 'simple_test'
5
6
test('meta infos', function(a)
- a.equal(array.__VERSION, '1.2.6')
7
+ a.equal(array.__VERSION, '1.3.0')
8
a.equal(array.__DESCRIPTION,
9
"A small library with useful methods to handle Lua's table when it's working like an Array")
10
end)
0 commit comments