summaryrefslogtreecommitdiff
path: root/Resources/Libraries/luaunit/luaunit-3.4-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/Libraries/luaunit/luaunit-3.4-1.rockspec')
-rw-r--r--Resources/Libraries/luaunit/luaunit-3.4-1.rockspec48
1 files changed, 0 insertions, 48 deletions
diff --git a/Resources/Libraries/luaunit/luaunit-3.4-1.rockspec b/Resources/Libraries/luaunit/luaunit-3.4-1.rockspec
deleted file mode 100644
index f26f4ee..0000000
--- a/Resources/Libraries/luaunit/luaunit-3.4-1.rockspec
+++ /dev/null
@@ -1,48 +0,0 @@
-package = "LuaUnit"
-version = "3.4-1"
-source =
-{
- url = 'https://github.com/bluebird75/luaunit/releases/download/LUAUNIT_V3_4/rock-luaunit-3.4.zip'
-}
-
-description =
-{
- summary = "A unit testing framework for Lua",
- detailed =
- [[
- LuaUnit is a popular unit-testing framework for Lua, with an interface typical
- of xUnit libraries (Python unittest, Junit, NUnit, ...). It supports
- several output formats (Text, TAP, JUnit, ...) to be used directly or work with Continuous Integration platforms
- (Jenkins, Hudson, ...).
-
- For simplicity, LuaUnit is contained into a single-file and has no external dependency.
-
- Tutorial and reference documentation is available on
- [read-the-docs](http://luaunit.readthedocs.org/en/latest/)
-
- LuaUnit may also be used as an assertion library, to validate assertions inside a running program. In addition, it provides
- a pretty stringifier which converts any type into a nicely formatted string (including complex nested or recursive tables).
-
- To install LuaUnit from LuaRocks, you need at least LuaRocks version 2.4.4 (due to old versions of wget being incompatible
- with GitHub https downloading)
-
- ]],
- homepage = "http://github.com/bluebird75/luaunit",
- license = "BSD",
- maintainer = 'Philippe Fremy <phil dot fremy at free dot fr>',
-}
-
-dependencies =
-{
- "lua >= 5.1", "lua < 5.5"
-}
-
-build =
-{
- type = "builtin",
- modules =
- {
- luaunit = "luaunit.lua"
- },
- copy_directories = { "doc", "test" }
-}