diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/type/object.lux (renamed from stdlib/test/test/lux/paradigm/object.lux) | 2 | ||||
-rw-r--r-- | stdlib/test/tests.lux | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/test/test/lux/paradigm/object.lux b/stdlib/test/test/lux/type/object.lux index 215dcee77..c85ff5770 100644 --- a/stdlib/test/test/lux/paradigm/object.lux +++ b/stdlib/test/test/lux/type/object.lux @@ -1,7 +1,7 @@ (;module: lux (lux (data (coll [list])) - (paradigm object))) + (type object))) ## No parameters (interface: Counter diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index ba0da53f8..7c8258bc6 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -5,7 +5,7 @@ (concurrency [promise]) [cli #+ program:] [test]) - (test lux + (test ["_;" lux] (lux ["_;" cli] ["_;" host] ["_;" io] @@ -65,16 +65,16 @@ ["poly_;" functor])) ["_;" type] (type ["_;" check] - ["_;" auto]) - (paradigm ["_;" object]) + ["_;" auto] + ["_;" object]) )) - (lux (control [contract]) + (lux (control [contract] + ["_;" concatenative]) (data [env] [trace] [store]) [macro] - (math [random]) - (paradigm ["_;" concatenative])) + (math [random])) ) ## [Program] |