Skip to content

Commit

Permalink
GitHub Issue #169 - add test case for issue examples
Browse files Browse the repository at this point in the history
  • Loading branch information
oakmac committed Dec 19, 2024
1 parent 41b5791 commit 6eebb56
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions test_format/format.eno
Original file line number Diff line number Diff line change
Expand Up @@ -2137,3 +2137,33 @@ bbb ;; bar
(foo
#aaa "aaa")
--Expected

# GitHub Issue #169 examples

--Input
(filter
#(not= 1 %) [1 2 3])

(let [result (filter
#(not= 1 %) [123])]
result)

(let [result (->>
(filter
#(not= 1 %) [123]))]
result)
--Input

--Expected
(filter
#(not= 1 %) [1 2 3])

(let [result (filter
#(not= 1 %) [123])]
result)

(let [result (->>
(filter
#(not= 1 %) [123]))]
result)
--Expected

0 comments on commit 6eebb56

Please sign in to comment.