1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-16 09:10:48 +03:00

Merge pull request #388 from bjh21/bjh21-large-files-step6

step6: Test loading of a large (>255 byte) file earlier than before.
This commit is contained in:
Joel Martin 2019-05-28 13:30:27 -04:00 committed by GitHub
commit 97e1fd50a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,9 +86,20 @@
;=>9
;>>> deferrable=True
;;
;; -------- Deferrable Functionality --------
;; Testing reading of large files
(load-file "../tests/computations.mal")
;=>nil
(sumdown 2)
;=>3
(fib 2)
;=>1
;>>> optional=True
;;
;; -------- Deferrable/Optional Functionality --------
;; -------- Optional Functionality --------
;; Testing comments in a file
(load-file "../tests/incB.mal")