Skip to content

Commit

Permalink
disable test from srfi-46 #43
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Aug 22, 2020
1 parent 27f0db9 commit f2f70ed
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions tests/syntax.scm
Original file line number Diff line number Diff line change
Expand Up @@ -360,9 +360,17 @@
(f :::)))
(t.is result '((1) 2 (3) (4)))))

;; (test "syntax-rules: method caller (srfi-46)"
;; (lambda (t)
;;
(test_ "syntax-rules: elipsis in middle of pattern (srfi-46)"
(lambda (t)

(define result (let-syntax
((foo (syntax-rules ()
((foo ?x ?y ... ?z)
(list ?x (list ?y ...) ?z)))))
(foo 1 2 3 4 5)))

(t.is result '(1 (2 3 4) 5))))


(test "syntax-rules: rec macro (srfi-31)"
(lambda (t)
Expand Down

0 comments on commit f2f70ed

Please sign in to comment.