diff options
Diffstat (limited to 'tests/indent/julia_spec.lua')
| -rw-r--r-- | tests/indent/julia_spec.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/indent/julia_spec.lua b/tests/indent/julia_spec.lua new file mode 100644 index 000000000..a89f9f493 --- /dev/null +++ b/tests/indent/julia_spec.lua @@ -0,0 +1,17 @@ +local Runner = require("tests.indent.common").Runner +local XFAIL = require("tests.indent.common").XFAIL + +local run = Runner:new(it, "tests/indent/julia", { + tabstop = 4, + shiftwidth = 4, + softtabstop = 4, + expandtab = true, +}) + +describe("indent Julia:", function() + describe("whole file:", function() + run:whole_file(".", { + expected_failures = {}, + }) + end) +end) |
