File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Rebol [
66
66
67
67
===start-group=== "#[date! ...]"
68
68
;@@ https://github.com/Oldes/Rebol-issues/issues/1034
69
- --test-- "#[date!] valid"
69
+ --test-- "#[date! ... ] valid"
70
70
--assert 1-Feb-0003 = #[date! 1 2 3 ]
71
71
--assert 1-Feb-0003/4:00 = #[date! 1 2 3 4:0]
72
72
--assert 1-Feb-0003/4:00+5:00 = #[date! 1 2 3 4:0 5:0]
@@ -77,13 +77,14 @@ Rebol [
77
77
--assert 1-Jan-2000/10:00+2:00 = #[date! 1 -1 -2000 10:0 2:0]
78
78
--assert 5-Jan-2000/4:00 = #[date! 1 -1 -2000 100 :0]
79
79
80
- --test-- "#[date!] invalid"
81
- --assert error? try [load {#[date!]} ]
80
+ --test-- "#[date! ...] invalid"
82
81
--assert error? try [load {#[date! 1]} ]
83
82
--assert error? try [load {#[date! 1 2]} ]
84
83
--assert error? try [load {#[date! 1 2 3 x]} ]
85
84
--assert error? try [load {#[date! 1 2 3 4:0 x]} ]
86
85
--assert error? try [load {#[date! 1 2 3 4:0 5:0 3]} ]
86
+ ;@@ https://github.com/Oldes/Rebol-issues/issues/2508
87
+ --assert datatype? try [load {#[date!]} ]
87
88
88
89
===end-group===
89
90
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ Rebol [
67
67
]
68
68
--test-- "construct image invalid"
69
69
;@@ https://github.com/Oldes/Rebol-issues/issues/1034
70
- --assert error? try [load {#[image!]} ]
71
70
--assert error? try [load {#[image! x]} ]
72
71
--assert error? try [load {#[image! 1x-1]} ]
73
72
--assert error? try [load {#[image! 1x1 x]} ]
@@ -77,7 +76,8 @@ Rebol [
77
76
;@@ https://github.com/Oldes/Rebol-issues/issues/1037
78
77
--assert all [error? e: try [make image! [3x2 #{ 000000000000000000000000000000000000 } 1x0 ]] e/id = 'malconstruct]
79
78
--assert all [error? e: try [load {#[image! 3x2 #{000000000000000000000000000000000000} 1x0]} ] e/id = 'malconstruct]
80
-
79
+ ;@@ https://github.com/Oldes/Rebol-issues/issues/2508
80
+ --assert datatype? try [load {#[image!]} ]
81
81
82
82
===end-group===
83
83
You can’t perform that action at this time.
0 commit comments