diff options
author | Eduardo Julian | 2017-08-30 20:38:59 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-08-30 20:38:59 -0400 |
commit | bc0d2da7a08e6c1b367a8d664d2958dfcdf7b98e (patch) | |
tree | 8e09b66272bbfebd1dd3ad8cff8246270ce37528 /stdlib/test | |
parent | 4ecf0d69f7b983722f5b0024992e9b510bea5a2f (diff) |
- Added HTML-generation module.
- Added CSS-generation module.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/tests.lux | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 2f1da760f..ee503c94c 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -37,6 +37,7 @@ ["_;" sum] ["_;" text] ["_;" lazy] + ["_;" color] (number ["_;" ratio] ["_;" complex]) (format ["_;" json] @@ -69,6 +70,8 @@ (type ["_;" check] ["_;" auto] ["_;" object]) + (world ["_;" blob] + ["_;" fs]) )) (lux (control [contract] [concatenative]) @@ -76,12 +79,15 @@ (data [env] [trace] [store] - [tainted]) + [tainted] + (format [context] + [html] + [css])) [macro] (math [random]) - (type [unit])) + (type [unit]) + [world/env]) ) -## [Program] (program: args (test;run)) |