aboutsummaryrefslogtreecommitdiff
path: root/spec/remove_spec.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tests: reorganize and speed up unit testsHisham Muhammad2024-02-271-2/+0
|
* fix: better normalization for paths and slashesHisham Muhammad2024-02-231-1/+2
| | | | Fixes #1195.
* tests: avoid repeated hardcoded package version numbers all overHisham Muhammad2022-04-121-16/+21
|
* repos: double-check that all files from a rock are installedHisham Muhammad2021-03-191-1/+34
| | | | | | | Ensure that `luarocks` fails if an installation does not successfully deploy all files registered in the `rock_manifest`. See #1276.
* editorconfig: trim trailing whitespaceHisham Muhammad2021-03-161-5/+5
|
* tests: shorter descriptionsHisham Muhammad2020-02-141-12/+12
|
* Tests: add test cases for rocks with conflicting module namesHisham Muhammad2018-09-041-1/+1
| | | | | This tests the behavior of upgrades and downgrades on rocks that deploy both foo.lua and foo.so
* Add general improvements to the fs moduleGeorge Roman2018-07-161-17/+17
|
* Tests: replace #blackbox with #integration and #whitebox with #unitGeorge Roman2018-06-041-1/+1
|
* luarocks-admin: only create index.html if it already exists or --index is givenHisham Muhammad2018-05-071-2/+2
|
* Tests: bump version of abelhas in testsHisham Muhammad2018-03-301-5/+5
| | | | TODO: this should be changed to depend on local files only.
* Reorganize test suite filesHisham Muhammad2018-01-081-1/+1
|
* Use versioned files only. (#734)Hisham Muhammad2017-10-041-10/+10
| | | | | | | | 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
* Add two tests for uppercase rock name argumentsPeter Melnichenko2016-10-261-1/+8
|
* Windows and appveyor support for testsroboo2016-08-211-3/+3
|
* Test improvementsroboo2016-07-191-1/+1
|
* need_rock() added, new flag noreset environmentroboo2016-07-141-3/+4
|
* Make env vars, paths and run commands available on test env loadPeter Melnichenko2016-07-081-2/+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/+85
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