]> gitweb.factorcode.org Git - factor.git/blob - extra/sorting/bubble/bubble-tests.factor
0dbe1263e5d97ef0bce6f2cfb82a303bcd2a6ac3
[factor.git] / extra / sorting / bubble / bubble-tests.factor
1 USING: kernel sorting.bubble tools.test ;
2
3 { { } } [ { } dup natural-bubble-sort! ] unit-test
4 { { 1 } } [ { 1 } dup natural-bubble-sort! ] unit-test
5 { { 1 2 3 4 5 } } [ { 1 4 2 5 3 } dup natural-bubble-sort! ] unit-test