aboutsummaryrefslogtreecommitdiff
path: root/spec/external_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/external_spec.lua')
-rw-r--r--spec/external_spec.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/external_spec.lua b/spec/external_spec.lua
index 63363b76..5a69a678 100644
--- a/spec/external_spec.lua
+++ b/spec/external_spec.lua
@@ -2,14 +2,13 @@ local test_env = require("spec.util.test_env")
2local run = test_env.run 2local run = test_env.run
3local testing_paths = test_env.testing_paths 3local testing_paths = test_env.testing_paths
4 4
5test_env.setup_specs()
6
7describe("luarocks external commands #integration", function() 5describe("luarocks external commands #integration", function()
8 setup(function() 6 lazy_setup(function()
7 test_env.setup_specs()
9 test_env.mock_server_init() 8 test_env.mock_server_init()
10 end) 9 end)
11 10
12 teardown(function() 11 lazy_teardown(function()
13 test_env.mock_server_done() 12 test_env.mock_server_done()
14 end) 13 end)
15 14