aboutsummaryrefslogtreecommitdiff
path: root/spec/pack_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/pack_spec.lua')
-rw-r--r--spec/pack_spec.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/pack_spec.lua b/spec/pack_spec.lua
new file mode 100644
index 00000000..a07e7ed2
--- /dev/null
+++ b/spec/pack_spec.lua
@@ -0,0 +1,35 @@
1local test_env = require("test/test_environment")
2local lfs = require("lfs")
3
4test_env.unload_luarocks()
5local pack = require("luarocks.pack")
6
7local extra_rocks = {
8 "/luasec-0.6-1.rockspec",
9 "/luasocket-3.0rc1-1.src.rock",
10 "/luasocket-3.0rc1-1.rockspec"
11}
12
13expose("LuaRocks pack tests #blackbox #b_pack", function()
14
15 before_each(function()
16 test_env.setup_specs(extra_rocks)
17 testing_paths = test_env.testing_paths
18 run = test_env.run
19 end)
20
21 it("LuaRocks pack basic", function()
22 assert.is_true(run.luarocks_bool("list"))
23 assert.is_true(run.luarocks_bool("pack luacov"))
24 assert.is_true(test_env.remove_files(lfs.currentdir(), "luacov-"))
25 end)
26
27 it("LuaRocks pack src", function()
28 assert.is_true(run.luarocks_bool("install luasec"))
29 assert.is_true(run.luarocks_bool("download --rockspec luasocket"))
30 assert.is_true(run.luarocks_bool("pack luasocket-3.0rc1-1.rockspec"))
31 assert.is_true(test_env.remove_files(lfs.currentdir(), "luasocket-"))
32 end)
33end)
34
35