]> gitweb.factorcode.org Git - factor.git/blob - basis/bootstrap/image/image-tests.factor
e7070d3cf2435a11297966168b0399a88dc8a28e
[factor.git] / basis / bootstrap / image / image-tests.factor
1 IN: bootstrap.image.tests
2 USING: bootstrap.image bootstrap.image.private tools.test
3 kernel math ;
4
5 [ f ] [ { 1 2 3 } [ 1 2 3 ] eql? ] unit-test
6
7 [ t ] [ [ 1 2 3 ] [ 1 2 3 ] eql? ] unit-test
8
9 [ f ] [ [ 2drop 0 ] [ 2drop 0.0 ] eql? ] unit-test
10
11 [ t ] [ [ 2drop 0 ] [ 2drop 0 ] eql? ] unit-test
12
13 [ f ] [ \ + [ 2drop 0 ] eql? ] unit-test
14
15 [ f ] [ 3 [ 0 1 2 ] eql? ] unit-test
16
17 [ f ] [ 3 3.0 eql? ] unit-test
18
19 [ t ] [ 4.0 4.0 eql? ] unit-test