blob: 1b082ab600cdecb250f600b5863ab775dcb7970c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
local test_env = require("test/test_environment")
local run = test_env.run
local testing_paths = test_env.testing_paths
test_env.unload_luarocks()
local extra_rocks = {
"/say-1.0-1.src.rock",
"/say-1.2-1.src.rock"
}
describe("LuaRocks list tests #blackbox #b_list", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
it("LuaRocks list with no flags/arguments", function()
local output = run.luarocks("list")
assert.is.truthy(output:find("luacov"))
end)
it("LuaRocks list porcelain", function()
local output = run.luarocks("list --porcelain")
local path = testing_paths.testing_sys_tree:gsub("-", "--") -- !not sure! why this is good
assert.is.truthy(output:find("luacov\t0.11.0--1\tinstalled\t" .. path .. "/lib/luarocks/rocks" ))
end)
it("LuaRocks install outdated and list it", function()
assert.is_true(run.luarocks_bool("install say 1.0-1"))
local output = run.luarocks("list --outdated")
assert.is.truthy(output:find("say"))
end)
it("LuaRocks list invalid tree", function()
local output = run.luarocks("--tree=/some/invalid/tree list")
assert.are.same(output, "Installed rocks:----------------")
end)
end)
|