aboutsummaryrefslogtreecommitdiff
path: root/spec/make_manifest_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/make_manifest_spec.lua')
-rw-r--r--spec/make_manifest_spec.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/make_manifest_spec.lua b/spec/make_manifest_spec.lua
new file mode 100644
index 00000000..c6cb1328
--- /dev/null
+++ b/spec/make_manifest_spec.lua
@@ -0,0 +1,19 @@
1local test_env = require("test/test_environment")
2local lfs = require("lfs")
3
4test_env.unload_luarocks()
5local make_manifest = require("luarocks.make_manifest")
6
7expose("LuaRocks make_manifest tests #blackbox #b_make_manifest", function()
8
9 before_each(function()
10 test_env.setup_specs(extra_rocks)
11 run = test_env.run
12 end)
13
14 describe("LuaRocks-admin make manifest tests", function()
15 it("LuaRocks-admin make manifest", function()
16 assert.is_true(run.luarocks_admin_bool("make_manifest"))
17 end)
18 end)
19end) \ No newline at end of file