(.module: [library [lux #* ["_" test (#+ Test)] [abstract [\\specification ["$." equivalence]]] [math ["." random (#+ Random)]]]] [\\program ["." /]]) (def: #export random (Random /.Identity) ($_ random.and (random.ascii/alpha 10) (random.ascii/alpha 10) )) (def: #export test Test (<| (_.covering /._) (_.for [/.Identity] ($_ _.and (_.for [/.equivalence] ($equivalence.spec /.equivalence ..random)) ))))