-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlunitx-0.6-0.rockspec
36 lines (36 loc) · 988 Bytes
/
lunitx-0.6-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package = "lunitx"
version = "0.6-0"
source = {
url = "git://github.com/dcurrie/lunit.git",
tag = "0.6.0"
}
description = {
summary = "Lunitx is a unit testing framework for lua, written in lua.",
detailed = [[
Lunitx is a unit testing framework for lua, written in lua,
based heavily on Lunit 0.5, but modified to work with Lua 5.2.
Lunitx provides 27 assert functions, and a few misc functions
for usage in an easy unit testing framework.
Lunit comes with a test suite to test itself. The testsuite
consists of approximately 710 assertions.
]],
homepage = "https://github.com/dcurrie/lunit",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1, <= 5.2"
}
build = {
type = "builtin",
modules = {
["lunit"] = "lua/lunit.lua",
["lunitx"] = "lua/lunitx.lua",
["lunit.console"] = "lua/lunit/console.lua",
["lunitx.atexit"] = "lua/lunitx/atexit.lua",
},
install = {
bin = {
["lunit.sh"] = "extra/lunit.sh",
}
}
}