/* Copyright (c) 2018 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "dlua-script-private.h"
static void test_lua(void)
{
static const char *luascript =
"function script_init(req)\n"
" dovecot.i_debug(\"lua script init called\")\n"
" return 0\n"
"end\n"
"function lua_function()\n"
"end\n";
test_begin("lua script");
test_end();
}
int main(void) {
void (*tests[])(void) = {
};
}