Mercurial Hosting > luan
comparison blog/src/private/tools/test.luan @ 598:e930f92d0f61
add blog test
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Wed, 16 Sep 2015 14:32:52 -0600 |
| parents | |
| children | ca169567ce07 |
comparison
equal
deleted
inserted
replaced
| 597:cb6c628de583 | 598:e930f92d0f61 |
|---|---|
| 1 local Luan = require "luan:Luan" | |
| 2 local do_file = Luan.do_file | |
| 3 local try = Luan.try | |
| 4 local Io = require "luan:Io" | |
| 5 local print = Io.print | |
| 6 local Http = require "luan:http/Http" | |
| 7 | |
| 8 | |
| 9 return function() | |
| 10 Io.stdout = Http.response.text_writer() | |
| 11 Http.response.content_type = "text/plain" | |
| 12 try { | |
| 13 function() | |
| 14 do_file "site:/lib/test.luan" | |
| 15 end; | |
| 16 catch = function(e) | |
| 17 print() | |
| 18 print("error:",e) | |
| 19 end; | |
| 20 } | |
| 21 local Db = require "site:/lib/Db" | |
| 22 Db.close() | |
| 23 end |
