Skip to content

Commit 088b408

Browse files
authored
add tests in htmltm-test.scm
Co-authored-by: haolin xu <[email protected]>
1 parent d2d0e8d commit 088b408

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/htmltm-test.scm

+10
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,18 @@
5252
(check (shtml->stm '(a (@ (href "%60hello%20world%60")) "`how are you?`"))
5353
=> '(hlink "\x00;how are you?\x00;" "%60hello%20world%60")))
5454

55+
(define (regtest-htmltm-formatting)
56+
(check (shtml->stm '(b "test")) => '(with "font-series" "bold" "test"))
57+
(check (shtml->stm '(em "test")) => '(em "test"))
58+
(check (shtml->stm '(i "test")) => '(with "font-shape" "italic" "test"))
59+
(check (shtml->stm '(small "test")) => '(with "font-size" "0.83" "test"))
60+
(check (shtml->stm '(strong "test")) => '(strong "test"))
61+
(check (shtml->stm '("test" (sub "sub"))) => '(rsub "sub"))
62+
(check (shtml->stm '("test" (sup "sup"))) => '(rsup "sup")))
63+
5564
(tm-define (htmltm-test)
5665
(regtest-htmltm-headings)
5766
(regtest-htmltm-grouping)
5867
(regtest-htmltm-quote)
68+
(regtest-htmltm-formatting)
5969
(check-report))

0 commit comments

Comments
 (0)