Skip to content

Commit

Permalink
fix the test case & identify the problem
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Dec 6, 2024
1 parent 5d0fce9 commit 97df54c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/test/cases/ReaderMacroTestCase.kiss
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@
}
(Assert.pass))

(function _testStartOfLineInMiddle []
(let [bob "first"
bob2 "second"]
(defReaderMacro &start "bob" [stream] `var1)
(defReaderMacro "bob" [stream] `var2)


(defReaderMacro &start "bob" [stream] `bob)
(defReaderMacro "bob" [stream] `bob2)
(function _testStartOfLineInMiddle []
(let [var1 "first"
var2 "second"]

(Assert.equals "firstsecond" (+
bob bob))))

0 comments on commit 97df54c

Please sign in to comment.