diff options
Diffstat (limited to 'spec/fun_spec.lua')
-rw-r--r-- | spec/fun_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/fun_spec.lua b/spec/fun_spec.lua index b3589c12..9844ec27 100644 --- a/spec/fun_spec.lua +++ b/spec/fun_spec.lua | |||
@@ -6,17 +6,17 @@ local fun = require("luarocks.fun") | |||
6 | 6 | ||
7 | describe("luarocks.fun #unit", function() | 7 | describe("luarocks.fun #unit", function() |
8 | local runner | 8 | local runner |
9 | 9 | ||
10 | setup(function() | 10 | setup(function() |
11 | runner = require("luacov.runner") | 11 | runner = require("luacov.runner") |
12 | runner.init(testing_paths.testrun_dir .. "/luacov.config") | 12 | runner.init(testing_paths.testrun_dir .. "/luacov.config") |
13 | runner.tick = true | 13 | runner.tick = true |
14 | end) | 14 | end) |
15 | 15 | ||
16 | teardown(function() | 16 | teardown(function() |
17 | runner.shutdown() | 17 | runner.shutdown() |
18 | end) | 18 | end) |
19 | 19 | ||
20 | describe("fun.concat", function() | 20 | describe("fun.concat", function() |
21 | it("returns the concatenation of the two tables given as arguments", function() | 21 | it("returns the concatenation of the two tables given as arguments", function() |
22 | local t1, t2 | 22 | local t1, t2 |