Skip to content

Commit 644ac28

Browse files
committed
1 parent ef13db7 commit 644ac28

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/tests/units/series-test.r3

+10
Original file line numberDiff line numberDiff line change
@@ -1758,6 +1758,16 @@ Rebol [
17581758
--assert "^M^/" = to-string to-binary "^M^/"
17591759
--assert #{0D0A} = to-binary to-string #{0D0A}
17601760

1761+
--test-- "binary AND binary"
1762+
;@@ https://github.com/Oldes/Rebol-issues/issues/1013
1763+
--assert #{0102} and #{00FF} == #{0002}
1764+
--assert #{0102} and #{0300} == #{0100}
1765+
--assert #{0102} and #{03} == #{0100}
1766+
--test-- "binary OR binary"
1767+
--assert #{0102} or #{00FF} == #{01FF}
1768+
--assert #{0102} or #{0300} == #{0302}
1769+
--assert #{0102} or #{03} == #{0302}
1770+
17611771
===end-group===
17621772

17631773

0 commit comments

Comments
 (0)