aboutsummaryrefslogtreecommitdiff
path: root/spec/path_spec.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* editorconfig: trim trailing whitespaceHisham Muhammad2021-03-161-6/+6
|
* tests: shorter descriptionsHisham Muhammad2020-02-141-10/+10
|
* Tests: luarocks init (#811)George Roman2018-06-051-0/+15
|
* Tests: replace #blackbox with #integration and #whitebox with #unitGeorge Roman2018-06-041-1/+1
|
* Reorganize test suite filesHisham Muhammad2018-01-081-1/+1
|
* path: use versioned LUA_xPATH_5_x variablesHisham Muhammad2018-01-051-0/+34
| | | | | | | | `luarocks path` now exports versioned variables `LUA_PATH_5_x` and `LUA_CPATH_5_x` instead of `LUA_PATH` and `LUA_CPATH` when those are in use in your system. Fixes #760.
* Remove some more unused stuff and globals from testsPeter Melnichenko2016-07-081-1/+1
|
* Make env vars, paths and run commands available on test env loadPeter Melnichenko2016-07-081-1/+1
|
* Tests: disable insulation and use describe() instead of expose()Peter Melnichenko2016-07-081-1/+1
|
* Remove all the unused imports in test suitePeter Melnichenko2016-07-081-2/+0
|
* New test-suite for LuaRocks (#581)robooo2016-07-071-0/+28
First version of new test-suite, using Busted framework based on Google Summer of Code project: https://summerofcode.withgoogle.com/projects/#5695811874717696 * Rewritten from Bash to Lua * Tests now check if they did what they were supposed to, beyond only checking success or failure of the `luarocks` command * Support for black-box (launching `luarocks` as an external command) and white-box (testing functions in modules directly) testing