view src/luan/modules/http/test.luan @ 1521:d3e61cd2aca0

docs and shell bug fix
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 25 Jun 2020 23:17:14 -0600
parents 307e76ccd0d6
children
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local Io = require "luan:Io.luan"
local Server = require "luan:http/Server.luan"


if #{...} ~= 2 then
	Io.stderr.write "usage: luan luan:http/test.luan dir test-URI\n"
	return
end

local dir, test = ...

Server.init_dir(dir)
Luan.do_file(test)