2023-06-12 09:54:30 -06:00
|
|
|
local Runner = require('tests.indent.common').Runner
|
2023-05-25 07:53:14 +02:00
|
|
|
--local XFAIL = require("tests.indent.common").XFAIL
|
|
|
|
|
|
2023-06-12 09:54:30 -06:00
|
|
|
local run = Runner:new(it, 'tests/indent/sql', {
|
2023-05-25 07:53:14 +02:00
|
|
|
tabstop = 4,
|
|
|
|
|
shiftwidth = 4,
|
|
|
|
|
softtabstop = 0,
|
|
|
|
|
expandtab = true,
|
|
|
|
|
})
|
|
|
|
|
|
2023-06-12 09:54:30 -06:00
|
|
|
describe('indent SQL:', function()
|
|
|
|
|
describe('whole file:', function()
|
|
|
|
|
run:whole_file('.', {
|
2023-05-25 07:53:14 +02:00
|
|
|
expected_failures = {},
|
|
|
|
|
})
|
|
|
|
|
end)
|
|
|
|
|
|
2023-06-12 09:54:30 -06:00
|
|
|
describe('new line:', function() end)
|
2023-05-25 07:53:14 +02:00
|
|
|
end)
|