aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/rust_spec.lua
blob: ad9e948c475c491d1126aade7baac683cdc56bb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local whole_file = require('nvim-treesitter.test_utils').indent_whole_file
local scan_dir = require('plenary.scandir').scan_dir

describe('indent Rust:', function()
  describe('whole file:', function()
    local files = scan_dir('lua/tests/indent/rust');
    for _, file in ipairs(files) do
      it(vim.fn.fnamemodify(file, ':t'), function()
        whole_file(file, {
          tabstop = 4,
          shiftwidth = 4,
          softtabstop = 0,
          expandtab = true,
        })
      end)
    end
  end)
end)