factor/extra/store/store-tests.factor

36 lines
669 B
Factor
Raw Normal View History

USING: assocs continuations debugger io.files kernel
namespaces store tools.test ;
IN: temporary
SYMBOL: store
SYMBOL: foo
: the-store ( -- path )
"store-test.store" resource-path ;
: delete-the-store ( -- )
[ the-store delete-file ] catch drop ;
: load-the-store ( -- )
2007-12-10 03:46:48 -05:00
the-store load-store store set-global ;
: save-the-store ( -- )
2007-12-10 03:46:48 -05:00
store save-store ;
delete-the-store
2007-12-10 03:46:48 -05:00
load-the-store
2007-12-10 03:46:48 -05:00
[ f ] [ foo store get-persistent ] unit-test
2007-12-10 03:46:48 -05:00
USE: prettyprint
store get-global store-data .
2007-12-10 03:46:48 -05:00
[ ] [ 100 foo store set-persistent ] unit-test
[ ] [ save-the-store ] unit-test
2007-12-10 03:46:48 -05:00
[ 100 ] [ foo store get-persistent ] unit-test
delete-the-store
2007-12-10 03:46:48 -05:00
f store set-global