diff options
| author | Eduardo Julian | 2016-12-12 01:57:55 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2016-12-12 01:57:55 -0400 | 
| commit | be0245eed09d242a1fa81a64ce9c3084e8251252 (patch) | |
| tree | b6114a276f85ae2ea5ce74ac395dd6d118801220 /stdlib/test/tests.lux | |
| parent | f2ca9f956cbedb251603a835b2f3c6b1dded3d00 (diff) | |
- Added tests for lux/math/ratio and lux/math/simple.
- Some minor refactorings.
- Ratios now work with nats instead of ints.
Diffstat (limited to '')
| -rw-r--r-- | stdlib/test/tests.lux | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 86de3d341..4b46a7cd5 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -47,10 +47,10 @@                             [zipper])                     (text [format]))               ["_;" math] -             (math ## ["_;" ratio] +             (math ["_;" ratio]                     ["_;" complex]                     ## ["_;" random] -                   ## ["_;" simple] +                   ["_;" simple]                     )               ## ["_;" pipe]               ## ["_;" lexer] @@ -59,6 +59,7 @@               ## (macro [ast]               ##        [syntax])               ## [type] +             ## (control ...)               )          )    ## (lux (codata [cont]) @@ -69,9 +70,7 @@    ##                   ["poly_;" text-encoder]    ##                   ["poly_;" functor]))    ##      (type [check] [auto]) -  ##      (control [effect]) -  ##      ["_;" lexer] -  ##      ["_;" regex]) +  ##      (control [effect]))    )  ## [Program] | 
