annotate src/luan/modules/http/test.luan @ 1321:307e76ccd0d6

generalize separate logging
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 05 Feb 2019 22:36:55 -0700
parents 7fc83fd2a39a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
693
ca169567ce07 module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents: 508
diff changeset
1 local Luan = require "luan:Luan.luan"
ca169567ce07 module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents: 508
diff changeset
2 local Io = require "luan:Io.luan"
ca169567ce07 module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents: 508
diff changeset
3 local Server = require "luan:http/Server.luan"
1218
a50803fde972 http/tools cleanup
Franklin Schmidt <fschmidt@gmail.com>
parents: 775
diff changeset
4
450
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
5
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
6 if #{...} ~= 2 then
1281
7fc83fd2a39a http/Server cleanup
Franklin Schmidt <fschmidt@gmail.com>
parents: 1218
diff changeset
7 Io.stderr.write "usage: luan luan:http/test.luan dir test-URI\n"
450
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
8 return
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
9 end
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
10
4b8281c5c5af add web/test
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff changeset
11 local dir, test = ...
1218
a50803fde972 http/tools cleanup
Franklin Schmidt <fschmidt@gmail.com>
parents: 775
diff changeset
12
a50803fde972 http/tools cleanup
Franklin Schmidt <fschmidt@gmail.com>
parents: 775
diff changeset
13 Server.init_dir(dir)
693
ca169567ce07 module URIs must now include ".luan"
Franklin Schmidt <fschmidt@gmail.com>
parents: 508
diff changeset
14 Luan.do_file(test)