summaryrefslogtreecommitdiff
path: root/spec/make_manifest_spec.lua
blob: a3d015c908ac1448cad9ee24efe8941570d8eeb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local test_env = require("spec.util.test_env")
local run = test_env.run

test_env.unload_luarocks()

describe("luarocks make_manifest #integration", function()

   before_each(function()
      test_env.setup_specs()
   end)

   it("runs", function()
      assert.is_true(run.luarocks_admin_bool("make_manifest"))
   end)
end)