update tests

This commit is contained in:
Alvaro Muñoz 2023-01-31 11:36:23 +01:00 committed by Stephan Seitz
parent c433b3c232
commit d335c39bff
3 changed files with 14 additions and 9 deletions

View file

@ -1,6 +1,7 @@
import go
module Test {
predicate test() {}
}
select 1

View file

@ -16,5 +16,9 @@ describe("indent Lua:", function()
end)
describe("new line:", function()
run:new_line("module.ql", { on_line = 3, text = "predicate test() {}", indent = 2 })
run:new_line("module.ql", { on_line = 3, text = "predicate foo() {}", indent = 2 })
end)
describe("new line:", function()
run:new_line("module.ql", { on_line = 4, text = "predicate foo() {}", indent = 2 })
end)