fix tests
This commit is contained in:
parent
ed6f1902b9
commit
6db23aa6c8
1 changed files with 5 additions and 5 deletions
|
|
@ -574,11 +574,11 @@
|
|||
(for-all+
|
||||
[s1 (gen/vector (limit-size 5 gen/int))]
|
||||
(and
|
||||
(empty? (s/select s/VOID s1))
|
||||
(empty? (s/select [s/VOID s/ALL s/ALL s/ALL s/ALL] s1))
|
||||
(= s1 (s/transform s/VOID inc s1))
|
||||
(= s1 (s/transform [s/ALL s/VOID s/ALL] inc s1))
|
||||
(= (s/transform [s/ALL (s/cond-path even? nil odd? s/VOID)] inc s1)
|
||||
(empty? (s/select s/STOP s1))
|
||||
(empty? (s/select [s/STOP s/ALL s/ALL s/ALL s/ALL] s1))
|
||||
(= s1 (s/transform s/STOP inc s1))
|
||||
(= s1 (s/transform [s/ALL s/STOP s/ALL] inc s1))
|
||||
(= (s/transform [s/ALL (s/cond-path even? nil odd? s/STOP)] inc s1)
|
||||
(s/transform [s/ALL even?] inc s1))
|
||||
)))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue