aboutsummaryrefslogtreecommitdiff
path: root/spec/deps_spec.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tests: rockspec use cleanupsHisham Muhammad2024-03-131-2/+0
|
* tests: reorganize and speed up unit testsHisham Muhammad2024-02-271-145/+0
|
* fix(build): don't look for Lua headers when installing pure-Lua rocksHisham Muhammad2024-02-191-0/+143
| | | | | | | This only applies to 'builtin' as we can't know about other modes, but this should be good enough. Fixes #1275.
* tests: avoid repeated hardcoded package version numbers all overHisham Muhammad2022-04-121-49/+53
|
* editorconfig: trim trailing whitespaceHisham Muhammad2021-03-161-2/+2
|
* tests: shorter descriptionsHisham Muhammad2020-02-141-8/+8
|
* Tests: replace #blackbox with #integration and #whitebox with #unitGeorge Roman2018-06-041-1/+1
|
* Tests: make sure tests run from testrun/Hisham Muhammad2018-03-301-2/+2
|
* Reorganize test suite filesHisham Muhammad2018-01-081-1/+1
|
* Use versioned files only. (#734)Hisham Muhammad2017-10-041-32/+32
| | | | | | | | Let's take the opportunity of a new major version to make an important cleanup: getting rid of the error-prone unversioned configuration files. This drops support for: * Unversioned config.lua -> use config-5.x.lua * Unversioned luarocks/site_config.lua -> it always generates luarocks/core/site_config_5_x.lua * Unversioned lib/luarocks/rocks -> it always uses lib/luarocks/rocks-5.x
* Windows and appveyor support for testsroboo2016-08-211-35/+35
|
* Remove some more unused stuff and globals from testsPeter Melnichenko2016-07-081-2/+0
|
* Make env vars, paths and run commands available on test env loadPeter Melnichenko2016-07-081-0/+2
|
* 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/+1
|
* New test-suite for LuaRocks (#581)robooo2016-07-071-0/+115
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