aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/nu_spec.lua
diff options
context:
space:
mode:
authorAbhishek Singh <abhisheksingh0x558@icloud.com>2024-11-05 19:55:42 +0530
committerGitHub <noreply@github.com>2024-11-05 15:25:42 +0100
commit604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e (patch)
treebe2467c93f6297b2f2b22111af974ffed030d125 /tests/indent/nu_spec.lua
parentbot(lockfile): update dhall, printf, regex, ziggy, ziggy_schema (diff)
downloadnvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.gz
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.bz2
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.lz
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.xz
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.zst
nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.zip
feat(nu): add parser and queries (#7267)
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)