-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtested-dev-1.rockspec
More file actions
74 lines (63 loc) · 2.43 KB
/
tested-dev-1.rockspec
File metadata and controls
74 lines (63 loc) · 2.43 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
rockspec_format = "3.0"
package = "tested"
version = "dev-1"
source = {
url = "git+https://github.com/FourierTransformer/tested.git",
branch = "main"
}
description = {
summary = "A Unit Testing Framework for the Teal and Lua",
homepage = "https://github.com/FourierTransformer/tested",
license = "MIT"
}
dependencies = {
"luafilesystem",
"argparse",
"luacov",
-- just use whatever version of tl they have installed
-- they'll likely install tl first and then tested, so seems like a safe bet
"tl",
"lanes==3.17.2"
}
build = {
-- doesn't install the teal files just yet...
-- type = "cyan",
type = "builtin",
modules = {
tested = "build/tested.lua",
["tested.assert_table"] = "build/tested/assert_table.lua",
["tested.file_loader"] = "build/tested/file_loader.lua",
["tested.main"] = "build/tested/main.lua",
["tested.test_runner"] = "build/tested/test_runner.lua",
["tested.types"] = "build/tested/types.lua",
["tested.libs.ansicolors"] = "build/tested/libs/ansicolors.lua",
["tested.libs.inspect"] = "build/tested/libs/inspect.lua",
["tested.libs.logging"] = "build/tested/libs/logging.lua",
["tested.libs.tadd"] = "build/tested/libs/tadd.lua",
["tested.libs.ThreadPool"] = "build/tested/libs/ThreadPool.lua",
["tested.results.plain"] = "build/tested/results/plain.lua",
["tested.results.tap"] = "build/tested/results/tap.lua",
["tested.results.terminal"] = "build/tested/results/terminal.lua",
},
install = {
bin = {
'src/bin/tested'
},
lua = {
"src/tested.tl",
["tested.assert_table"] = "src/tested/assert_table.tl",
["tested.file_loader"] = "src/tested/file_loader.tl",
["tested.main"] = "src/tested/main.tl",
["tested.test_runner"] = "src/tested/test_runner.tl",
["tested.types"] = "src/tested/types.tl",
["tested.libs.ansicolors"] = "src/tested/libs/ansicolors.tl",
["tested.libs.inspect"] = "src/tested/libs/inspect.tl",
["tested.libs.logging"] = "src/tested/libs/logging.tl",
["tested.libs.tadd"] = "src/tested/libs/tadd.tl",
["tested.libs.ThreadPool"] = "src/tested/libs/ThreadPool.tl",
["tested.results.plain"] = "src/tested/results/plain.tl",
["tested.results.tap"] = "src/tested/results/tap.tl",
["tested.results.terminal"] = "src/tested/results/terminal.tl",
}
}
}