aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/tests.lux
diff options
context:
space:
mode:
authorEduardo Julian2017-11-29 04:51:04 -0400
committerEduardo Julian2017-11-29 04:51:04 -0400
commit8c5cca122817bc63f4f84cc8351ced3cb67e5eea (patch)
tree8803dd3ed59ddcc6b964354fd312ab9e62e12cd8 /stdlib/test/tests.lux
parent1ef969c8ce0f1a83ffa8d26d779806190ac3eced (diff)
- Changed the identifier separator, from the semi-colon (;) to the period/dot (.).
Diffstat (limited to '')
-rw-r--r--stdlib/test/tests.lux147
1 files changed, 73 insertions, 74 deletions
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux
index 26dfa0ac7..2efff3c71 100644
--- a/stdlib/test/tests.lux
+++ b/stdlib/test/tests.lux
@@ -1,81 +1,80 @@
-(;module:
+(.module:
lux
(lux (control monad)
[io]
(concurrency [promise])
[cli #+ program:]
[test])
- (test ["_;" lux]
- (lux ["_;" cli]
- ["_;" host]
- ["_;" io]
- (time ["_;" instant]
- ["_;" duration]
- ["_;" date])
- (concurrency ["_;" actor]
- ["_;" space]
- ["_;" atom]
- ["_;" frp]
- ["_;" promise]
- ["_;" stm])
- (control ["_;" exception]
- ["_;" interval]
- ["_;" pipe]
- ["_;" cont]
- ["_;" reader]
- ["_;" writer]
- ["_;" state]
- ["_;" parser])
- (data ["_;" bit]
- ["_;" bool]
- ["_;" error]
- ["_;" ident]
- ["_;" identity]
- ["_;" maybe]
- ["_;" number]
- ["_;" product]
- ["_;" sum]
- ["_;" text]
- ["_;" lazy]
- ["_;" color]
- (number ["_;" ratio]
- ["_;" complex])
- (format ["_;" json]
- ["_;" xml])
- (coll ["_;" array]
- ["_;" dict]
- ["_;" list]
- ["_;" queue]
- ["_;" set]
- ["_;" stack]
- ["_;" sequence]
- ["_;" priority-queue]
- ["_;" stream]
- (tree ["tree_;" rose]
- ["tree_;" zipper])
- (ordered ["ordered_;" dict]
- ["ordered_;" set]))
- (text ["_;" format]
- ["_;" lexer]
- ["_;" regex]))
- ["_;" math]
- (math ["_;" random]
- (logic ["_;" continuous]
- ["_;" fuzzy]))
- (macro ["_;" code]
- ["_;" syntax]
- (poly ["poly_;" eq]
- ["poly_;" functor]))
- (type ["_;" implicit]
- ["_;" object])
- (lang ["lang_;" syntax]
- ["_;" type]
- (type ["_;" check]))
- (world ["_;" blob]
- ["_;" file]
- (net ["_;" tcp]
- ["_;" udp]))
- ))
+ (test ["_." lux]
+ (lux ["_." cli]
+ ["_." host]
+ ["_." io]
+ (time ["_." instant]
+ ["_." duration]
+ ["_." date])
+ (concurrency ["_." actor]
+ ["_." space]
+ ["_." atom]
+ ["_." frp]
+ ["_." promise]
+ ["_." stm])
+ (control ["_." exception]
+ ["_." interval]
+ ["_." pipe]
+ ["_." cont]
+ ["_." reader]
+ ["_." writer]
+ ["_." state]
+ ["_." parser])
+ (data ["_." bit]
+ ["_." bool]
+ ["_." error]
+ ["_." ident]
+ ["_." identity]
+ ["_." maybe]
+ ["_." number]
+ ["_." product]
+ ["_." sum]
+ ["_." text]
+ ["_." lazy]
+ ["_." color]
+ (number ["_." ratio]
+ ["_." complex])
+ (format ["_." json]
+ ["_." xml])
+ (coll ["_." array]
+ ["_." dict]
+ ["_." list]
+ ["_." queue]
+ ["_." set]
+ ["_." stack]
+ ["_." sequence]
+ ["_." priority-queue]
+ ["_." stream]
+ (tree ["tree_." rose]
+ ["tree_." zipper])
+ (ordered ["ordered_." dict]
+ ["ordered_." set]))
+ (text ["_." format]
+ ["_." lexer]
+ ["_." regex]))
+ ["_." math]
+ (math ["_." random]
+ (logic ["_." continuous]
+ ["_." fuzzy]))
+ (macro ["_." code]
+ ["_." syntax]
+ (poly ["poly_." eq]
+ ["poly_." functor]))
+ (type ["_." implicit]
+ ["_." object])
+ (lang ["lang_." syntax]
+ ["_." type]
+ (type ["_." check]))
+ (world ["_." blob]
+ ["_." file]
+ (net ["_." tcp]
+ ["_." udp]))))
(lux (control [contract]
[concatenative])
(concurrency [space])
@@ -86,7 +85,7 @@
(format [context]
[html]
[css])
- (coll (tree ["tree_;" parser])))
+ (coll (tree ["tree_." parser])))
(math [random])
[macro]
(type [unit])
@@ -95,4 +94,4 @@
)
(program: args
- (test;run))
+ (test.run))