aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/lua/test_plug/submodule/health.lua
blob: d07632cff4dd20d7f33693cc07c440bdcb6e3026 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local M = {}
local health = require("health")

M.check = function()
  health.report_start("report 1")
  health.report_ok("everything is fine")
  health.report_start("report 2")
  health.report_ok("nothing to see here")
end

return M