aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/nu_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/nu_spec.lua')
-rw-r--r--tests/indent/nu_spec.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/indent/nu_spec.lua b/tests/indent/nu_spec.lua
new file mode 100644
index 000000000..37c02ebea
--- /dev/null
+++ b/tests/indent/nu_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/nu", {
+ tabstop = 2,
+ shiftwidth = 2,
+ softtabstop = -1,
+ expandtab = true,
+})
+
+describe("indent Nu:", function()
+ describe("whole file:", function()
+ run:whole_file(".", {
+ expected_failures = {},
+ })
+ end)
+end)