blob: 9dbeaab867968be626a6b62a19230a44b2f77501 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
local test_env = require("test/test_environment")
local run = test_env.run
test_env.unload_luarocks()
local extra_rocks = {
"/luarepl-0.4-1.src.rock"
}
describe("LuaRocks doc tests #blackbox #b_doc", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
describe("LuaRocks doc basic tests", function()
it("LuaRocks doc with no flags/arguments", function()
assert.is_false(run.luarocks_bool("doc"))
end)
it("LuaRocks doc with invalid argument", function()
assert.is_false(run.luarocks_bool("doc invalid"))
end)
end)
describe("LuaRocks doc tests with flags", function()
it("LuaRocks doc of installed luarepl", function()
assert.is_true(run.luarocks_bool("install luarepl"))
assert.is_true(run.luarocks_bool("doc luarepl"))
end)
it("LuaRocks doc of luacov and access its home page", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --home"))
end)
it("LuaRocks doc of luacov and list doc folder", function()
assert.is_true(run.luarocks_bool("install luacov"))
local output = assert.is.truthy(run.luarocks("doc luacov --list"))
assert.is.truthy(output:find("/lib/luarocks/rocks/luacov/0.11.0--1/doc/"))
end)
it("LuaRocks doc of luacov local", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --local"))
end)
it("LuaRocks doc of luacov porcelain", function()
assert.is_true(run.luarocks_bool("install luacov"))
assert.is_true(run.luarocks_bool("doc luacov --porcelain"))
end)
end)
end)
|