diff options
Diffstat (limited to '')
-rw-r--r-- | spec/make_manifest_spec.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/make_manifest_spec.lua b/spec/make_manifest_spec.lua new file mode 100644 index 00000000..1c7f5bf8 --- /dev/null +++ b/spec/make_manifest_spec.lua | |||
@@ -0,0 +1,17 @@ | |||
1 | local test_env = require("test/test_environment") | ||
2 | local run = test_env.run | ||
3 | |||
4 | test_env.unload_luarocks() | ||
5 | |||
6 | describe("LuaRocks make_manifest tests #blackbox #b_make_manifest", function() | ||
7 | |||
8 | before_each(function() | ||
9 | test_env.setup_specs() | ||
10 | end) | ||
11 | |||
12 | describe("LuaRocks-admin make manifest tests", function() | ||
13 | it("LuaRocks-admin make manifest", function() | ||
14 | assert.is_true(run.luarocks_admin_bool("make_manifest")) | ||
15 | end) | ||
16 | end) | ||
17 | end) | ||