mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-13 13:01:55 +03:00
added lua test cases
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@128 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
26
www/lua/env.lua
Normal file
26
www/lua/env.lua
Normal file
@ -0,0 +1,26 @@
|
||||
-- This file should be executed before any script in this directory
|
||||
-- according to the configuration (cgilua/conf.lua).
|
||||
|
||||
pcall (cgilua.enablesession)
|
||||
|
||||
local put, mkurlpath = cgilua.put, cgilua.mkurlpath
|
||||
|
||||
cgilua.addclosefunction (function ()
|
||||
put [[
|
||||
<p>
|
||||
<small>
|
||||
<a href="test_main.html">Main</a>]]
|
||||
for _, test in {
|
||||
{ "Get", "test_main.lua", {ab = "cd", ef = "gh"} },
|
||||
{ "Cookies", "test_cookies.lua", },
|
||||
{ "FileSystem", "test_fs.lua", },
|
||||
{ "Libraries", "test_lib.lua", },
|
||||
{ "Session", "test_session.lua", },
|
||||
{ "Variables", "test_variables.lp", },
|
||||
} do
|
||||
put (string.format (' · <a href="%s">%s</a>',
|
||||
mkurlpath (test[2], test[3]), test[1]))
|
||||
end
|
||||
put [[
|
||||
</small>]]
|
||||
end)
|
Reference in New Issue
Block a user