factor/basis/persistent/heaps/heaps-tests.factor

12 lines
358 B
Factor
Raw Normal View History

2008-08-06 02:06:14 -04:00
USING: persistent.heaps tools.test ;
IN: persistent.heaps.tests
2008-07-11 12:42:16 -04:00
: test-input
{ { "hello" 3 } { "goodbye" 2 } { "whatever" 5 }
{ "foo" 1 } { "bar" -1 } { "baz" -7 } { "bing" 0 } } ;
[
{ { "baz" -7 } { "bar" -1 } { "bing" 0 } { "foo" 1 }
{ "goodbye" 2 } { "hello" 3 } { "whatever" 5 } }
] [ test-input assoc>pheap pheap>alist ] unit-test