aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/test/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm/source/test/program.lux')
-rw-r--r--lux-jvm/source/test/program.lux18
1 files changed, 18 insertions, 0 deletions
diff --git a/lux-jvm/source/test/program.lux b/lux-jvm/source/test/program.lux
new file mode 100644
index 000000000..270f9005d
--- /dev/null
+++ b/lux-jvm/source/test/program.lux
@@ -0,0 +1,18 @@
+(.module:
+ [lux #*
+ ["_" test (#+ Test)]
+ [control
+ ["." io]
+ [parser
+ [cli (#+ program:)]]]]
+ [spec
+ ["." compositor]]
+ {1
+ ["." /]})
+
+(program: args
+ (<| io.io
+ _.run!
+ ## (_.times 100)
+ (_.seed 1985013625126912890)
+ (compositor.spec /.jvm /.bundle /.expander /.program)))