Add missing modelines to tests/*.lua

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2016-12-31 14:05:51 +01:00
parent cc0e8662a8
commit d893e42440
9 changed files with 18 additions and 1 deletions

View File

@ -520,3 +520,5 @@ end
return setmetatable(module, {
__call = function(_,...) return add_steps(...) end
})
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -226,3 +226,5 @@ local steps = {
}
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -309,3 +309,5 @@ end)
require("_multi_screen")(steps, multi_screen_steps)
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -120,3 +120,5 @@ for _ in ipairs(awful.layout.layouts) do
end
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -296,3 +296,5 @@ local function spawn_clients()
end
require("_runner").run_steps{spawn_clients, unpack(tests)}
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -242,3 +242,5 @@ end)
require("_multi_screen")(steps, multi_screen_steps)
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -69,3 +69,5 @@ assert(w2.main_background.main_textbox)
assert(w2.main_background == w2:get_children_by_id("main_background")[1])
require("_runner").run_steps({ function() return true end })
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -440,3 +440,5 @@ table.insert(steps, function()
end)
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80

View File

@ -317,5 +317,6 @@ check_maximize()
return true
end)
require("_runner").run_steps(steps)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80