|
|
@ -42,7 +42,7 @@
|
|
|
|
(check-equal? (->string (void)) "")
|
|
|
|
(check-equal? (->string (void)) "")
|
|
|
|
(check-equal? (->string 'foo) "foo")
|
|
|
|
(check-equal? (->string 'foo) "foo")
|
|
|
|
(check-equal? (->string 123) "123")
|
|
|
|
(check-equal? (->string 123) "123")
|
|
|
|
;(check-equal? (->string (string->url "foo/bar.html")) "foo/bar.html")
|
|
|
|
(check-equal? (->string (string->url "foo/bar.html")) "foo/bar.html")
|
|
|
|
(define file-name-as-text "foo.txt")
|
|
|
|
(define file-name-as-text "foo.txt")
|
|
|
|
(check-equal? (->string (string->path file-name-as-text)) file-name-as-text)
|
|
|
|
(check-equal? (->string (string->path file-name-as-text)) file-name-as-text)
|
|
|
|
(check-equal? (->string #\¶) "¶")
|
|
|
|
(check-equal? (->string #\¶) "¶")
|
|
|
|