aboutsummaryrefslogtreecommitdiff
path: root/test/testfiles
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2016-07-14 14:43:42 -0300
committerGitHub <noreply@github.com>2016-07-14 14:43:42 -0300
commit36388709d628a76c450eed20b67f008faefc36cb (patch)
treee9e8a6959ecafcd8355b8b9614f65a613fe6ddb4 /test/testfiles
parent0f63a95e991435c769584abd01b16bd748a1434b (diff)
parent48b98f0c099dc621e1f93cccf9a9e03ff75649b6 (diff)
downloadluarocks-36388709d628a76c450eed20b67f008faefc36cb.tar.gz
luarocks-36388709d628a76c450eed20b67f008faefc36cb.tar.bz2
luarocks-36388709d628a76c450eed20b67f008faefc36cb.zip
Merge pull request #588 from robooo/new-tests
New tests
Diffstat (limited to 'test/testfiles')
-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}