summaryrefslogtreecommitdiff
path: root/spec/loader_spec.lua
blob: 0f946b72af82e9ef3c3337e0676c12f9b5840f66 (plain)
1
2
3
4
5
6
7
8
9
10
local test_env = require("spec.util.test_env")
local run = test_env.run

describe("luarocks.loader", function()
   describe("#unit", function()
      it("starts", function()
         assert(run.lua_bool([[-e "require 'luarocks.loader'; print(package.loaded['luarocks.loaded'])"]]))
      end)
   end)
end)