This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make object! [ | |
; Private Unicode Area for encoded delimiters and octets | |
url-pua-start: #"^(e000)" | |
url-pua-end: #"^(e0ff)" | |
delimiter: charset ":/?#[]@!$&'()*+,;=" | |
hex-digit: charset [#"0" - #"9" #"a" - #"f" #"A" - #"F"] | |
ascii: charset [#"^(00)" - #"^(7f)"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==Plans for the rebol-test test framework== | |
===The current state=== | |
====Test format==== | |
=====Carl's requirements===== | |
The format of the test file has been designed by Carl. His requirements were: |