aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorroboo <robo.karasek@gmail.com>2016-07-11 21:29:37 +0200
committerroboo <robo.karasek@gmail.com>2016-07-11 21:29:37 +0200
commit47a9e7571f5aefd48d5e8d168bd56f07e296b18e (patch)
tree0f6ca59478f5a69c92b3f6419fd386a245e9bae1 /test
parentb8334ea38536b7db031dac925d426fb5e4783407 (diff)
downloadluarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.tar.gz
luarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.tar.bz2
luarocks-47a9e7571f5aefd48d5e8d168bd56f07e296b18e.zip
Update new_version, pack tests
Diffstat (limited to 'test')
-rw-r--r--test/testfiles/invalid_validate-args-1.5.4-1.rockspec35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/testfiles/invalid_validate-args-1.5.4-1.rockspec b/test/testfiles/invalid_validate-args-1.5.4-1.rockspec
new file mode 100644
index 00000000..0b4d807d
--- /dev/null
+++ b/test/testfiles/invalid_validate-args-1.5.4-1.rockspec
@@ -0,0 +1,35 @@
1package = 'validate-args'
2version = '1.5.4-1'
3source = {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{++{
4 url = "https://bitbucket.org/djerius/validate.args/downloads/validate-args-1.5.4.tar.gz"
5}
6
7description = {
8 summary = "Function argument validation",
9 detailed = [[
10 validate.args is a Lua module that provides a framework for
11 validation of arguments to Lua functions as well as complex data
12 structures. The included validate.inplace module provides "live"
13 validation during assignment of values to elements in tables. ]],
14 license = "GPL-3",
15
16}
17
18dependencies = {
19 "lua >= 5.1"
20}
21
22build = {
23
24 type = "builtin",
25
26 modules = {
27 ["validate.args"] = "validate/args.lua",
28 ["validate.inplace"] = "validate/inplace.lua",
29 },
30
31 copy_directories = {
32 "doc", "tests"
33 }
34
35}