Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds some tests for racket/htdp#228, racket/htdp#229 and racket/htdp#230 #689

Merged
merged 10 commits into from
Nov 11, 2024
8 changes: 4 additions & 4 deletions drracket-test/tests/drracket/language-test.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -1326,8 +1326,8 @@ the settings above should match r5rs
(test-undefined-fn "(print (floor (sqrt 2)))" "print")

(test-expression "(let ([f (lambda (x) x)]) f)"
"(lambda (a1) ...)"
"(lambda (a1) ...)")
"f"
"f")
(test-expression ",1"
"unquote: misuse of a comma or unquote, not under a quasiquoting backquote")

Expand Down Expand Up @@ -1503,8 +1503,8 @@ the settings above should match r5rs
(test-expression "(print (floor (sqrt 2)))" "#i1.0")

(test-expression "(let ([f (lambda (x) x)]) f)"
"(lambda (a1) ...)"
"(lambda (a1) ...)")
"f"
"f")
(test-expression ",1"
"unquote: misuse of a comma or unquote, not under a quasiquoting backquote")

Expand Down
Loading
Loading