Add string repeat tests.
This commit is contained in:
parent
64ff4255e3
commit
b8eed3b877
1 changed files with 6 additions and 0 deletions
|
@ -65,6 +65,12 @@
|
|||
utils
|
||||
(test-equal? filter (filter odd? '(1 2 3 4)) '(1 3))
|
||||
(test-equal? filter (filter odd? '(2 4)) '())
|
||||
(test-equal? string-repeat
|
||||
(string-repeat "-" 4)
|
||||
"----")
|
||||
(test-equal? string-repeat
|
||||
(string-repeat "š" 4)
|
||||
"šššš")
|
||||
))
|
||||
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue