Skip to content

Commit

Permalink
Removing new tests from step7 and step9
Browse files Browse the repository at this point in the history
These will be separated into another branch.
  • Loading branch information
bendudson committed Dec 29, 2017
1 parent 990c7b5 commit 265041f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 1 addition & 4 deletions tests/step7_quote.mal
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ a
;=>(1 2 3 4 5 6)
(concat (concat))
;=>()
(concat (list) (list))
;=>()

(def! a (list 1 2))
(def! b (list 3 4))
Expand Down Expand Up @@ -74,8 +72,7 @@ b
;=>(1 b 3)
(quasiquote (1 (unquote b) 3))
;=>(1 (1 "b" "d") 3)
(quasiquote ((unquote 1) (unquote 2)))
;=>(1 2)


;; Testing splice-unquote
(def! c (quote (1 "b" "d")))
Expand Down
3 changes: 0 additions & 3 deletions tests/step9_try.mal
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@
(map (fn* (a) (* 2 a)) [1 2 3])
;=>(2 4 6)

(map (fn* [& args] (list? args)) [1 2])
;=>(true true)

;; Testing vector functions

(vector? [10 11])
Expand Down

0 comments on commit 265041f

Please sign in to comment.