We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d5331 commit bf03e0dCopy full SHA for bf03e0d
test/Main.hs
@@ -109,6 +109,16 @@ tests = testGroup "Tests"
109
case J.decode enc of
110
Left e -> QC.counterexample (show e) False
111
Right val1 -> val0 === val1
112
+ , THU.testCase "Q" $
113
+ -- Test that Unicode <right single quotation mark> is decoded correctly.
114
+ Right (J.String "It\2019s over now")
115
+ @=?
116
+ J.decode (shortTextToBytes "\"It\2019s over now\"")
117
+ , THU.testCase "R" $
118
+ -- Test that Unicode <right single quotation mark> is encoded correctly.
119
+ shortTextToBytes "\"It\2019s over now\""
120
121
+ BChunks.concat (Builder.run 4 (J.encode (J.String "It\2019s over now")))
122
]
123
, testGroup "smile-fragment"
124
[ THU.testCase "biginteger-65535" $
0 commit comments