File size: 326 Bytes
d7c5875 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | local test_env = require("spec.util.test_env")
local run = test_env.run
describe("luarocks-admin refresh_cache #integration", function()
before_each(function()
test_env.setup_specs()
end)
it("runs #ssh", function()
assert.is_true(run.luarocks_admin_bool("--server=testing refresh_cache"))
end)
end)
|