From 300b009f47bc617faa1c445966e2085c455e0c45 Mon Sep 17 00:00:00 2001 From: Edmund Cape Date: Wed, 19 Jan 2022 13:30:20 -0500 Subject: fix(healthcheck): handle empty reports --- test/functional/fixtures/lua/test_plug/submodule_empty/health.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/functional/fixtures/lua/test_plug/submodule_empty/health.lua (limited to 'test/functional/fixtures/lua/test_plug') diff --git a/test/functional/fixtures/lua/test_plug/submodule_empty/health.lua b/test/functional/fixtures/lua/test_plug/submodule_empty/health.lua new file mode 100644 index 0000000000..d2cf86e4f0 --- /dev/null +++ b/test/functional/fixtures/lua/test_plug/submodule_empty/health.lua @@ -0,0 +1,7 @@ +local M = {} + +M.check = function() + return {} +end + +return M -- cgit