diff options
Diffstat (limited to 'test/functional/lua/rspamadm')
-rw-r--r-- | test/functional/lua/rspamadm/test_batch.lua | 5 | ||||
-rw-r--r-- | test/functional/lua/rspamadm/test_verbose.lua | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/test/functional/lua/rspamadm/test_batch.lua b/test/functional/lua/rspamadm/test_batch.lua index e75154b7c..dd50c9db5 100644 --- a/test/functional/lua/rspamadm/test_batch.lua +++ b/test/functional/lua/rspamadm/test_batch.lua @@ -1 +1,4 @@ -print("hello world")
\ No newline at end of file +local rspamd_logger = require "rspamd_logger" + +rspamd_logger.info(rspamd_config, "nope") +rspamd_logger.err(rspamd_config, "hello world") diff --git a/test/functional/lua/rspamadm/test_verbose.lua b/test/functional/lua/rspamadm/test_verbose.lua new file mode 100644 index 000000000..4470c63e2 --- /dev/null +++ b/test/functional/lua/rspamadm/test_verbose.lua @@ -0,0 +1,3 @@ +local rspamd_logger = require "rspamd_logger" + +rspamd_logger.info(rspamd_config, "hello world") |