blob: 416184a80a034e2544e2c09a09d2770ff7b81e7d (
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
|
local test_env = require("test/test_environment")
local lfs = require("lfs")
local run = test_env.run
test_env.unload_luarocks()
local extra_rocks = {
"/luasec-0.6-1.rockspec",
"/luasocket-3.0rc1-1.src.rock",
"/luasocket-3.0rc1-1.rockspec"
}
describe("LuaRocks pack tests #blackbox #b_pack", function()
before_each(function()
test_env.setup_specs(extra_rocks)
end)
it("LuaRocks pack basic", function()
assert.is_true(run.luarocks_bool("list"))
assert.is_true(run.luarocks_bool("pack luacov"))
assert.is_true(test_env.remove_files(lfs.currentdir(), "luacov-"))
end)
it("LuaRocks pack src", function()
assert.is_true(run.luarocks_bool("install luasec"))
assert.is_true(run.luarocks_bool("download --rockspec luasocket"))
assert.is_true(run.luarocks_bool("pack luasocket-3.0rc1-1.rockspec"))
assert.is_true(test_env.remove_files(lfs.currentdir(), "luasocket-"))
end)
end)
|