diff options
author | Eduardo Julian | 2021-01-12 23:09:05 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-01-12 23:09:05 -0400 |
commit | 71de092a045dc70ab1c9eead477cf1512b144a87 (patch) | |
tree | 1f71aca655d867b748c430996d3687911b7537cc /stdlib/source/test/aedifex/artifact/time_stamp/time.lux | |
parent | 5dbf134346424602b0104d1f749c1a9eac6f21af (diff) |
Raise error when trying to use deprecated fields/method/classes in JVM.
Diffstat (limited to 'stdlib/source/test/aedifex/artifact/time_stamp/time.lux')
-rw-r--r-- | stdlib/source/test/aedifex/artifact/time_stamp/time.lux | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/stdlib/source/test/aedifex/artifact/time_stamp/time.lux b/stdlib/source/test/aedifex/artifact/time_stamp/time.lux deleted file mode 100644 index bd9bbe071..000000000 --- a/stdlib/source/test/aedifex/artifact/time_stamp/time.lux +++ /dev/null @@ -1,31 +0,0 @@ -(.module: - [lux #* - ["_" test (#+ Test)] - ["." time (#+ Time)] - [abstract - [monad (#+ do)]] - [control - ["." try ("#\." functor)] - [parser - ["<.>" text]]] - [math - ["." random (#+ Random)] - [number - ["n" nat] - ["i" int]]]] - {#program - ["." /]}) - -(def: #export test - Test - (<| (_.covering /._) - ($_ _.and - (do random.monad - [expected random.time] - (_.cover [/.format /.parser] - (|> expected - /.format - (<text>.run /.parser) - (try\map (\ time.equivalence = expected)) - (try.default false)))) - ))) |