2008-04-27 04:09:00 -04:00
|
|
|
USING: tools.test kernel ;
|
|
|
|
IN: calendar.format.macros
|
|
|
|
|
|
|
|
[ 2 ] [ { [ 2 ] } attempt-all-quots ] unit-test
|
|
|
|
|
|
|
|
[ 2 ] [ { [ 1 throw ] [ 2 ] } attempt-all-quots ] unit-test
|
|
|
|
|
|
|
|
[ { [ 1 throw ] } attempt-all-quots ] [ 1 = ] must-fail-with
|
|
|
|
|
2008-06-09 04:20:27 -04:00
|
|
|
: compiled-test-1 ( -- n )
|
|
|
|
{ [ 1 throw ] [ 2 ] } attempt-all-quots ;
|
2008-04-27 04:09:00 -04:00
|
|
|
|
2009-04-20 22:15:19 -04:00
|
|
|
\ compiled-test-1 def>> must-infer
|
2008-04-27 04:09:00 -04:00
|
|
|
|
|
|
|
[ 2 ] [ compiled-test-1 ] unit-test
|