summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/quoted-printable.scm18
1 files changed, 13 insertions, 5 deletions
diff --git a/tests/quoted-printable.scm b/tests/quoted-printable.scm
index a0f0369..608a937 100755
--- a/tests/quoted-printable.scm
+++ b/tests/quoted-printable.scm
@@ -49,10 +49,18 @@ abriquent pour te la vendre une =C3=A2me vulgaire.")
                           (string->bytevector decoded-text charset))
                          #\newline))))
 
-(test-equal "q-encoding wikipedia example"
-  (bytevector->string
-   (q-encoding-decode "=A1Hola,_se=F1or!")
-   "ISO-8859-1")
-  "¡Hola, señor!")
+(let ((encoded-text "=A1Hola,_se=F1or!")
+      (decoded-text "¡Hola, señor!")
+      (charset "ISO-8859-1"))
+  (test-equal "q-encoding wikipedia example: decoding"
+    (q-encoding-encode
+     (string->bytevector decoded-text charset))
+    encoded-text)
+
+  (test-equal "q-encoding wikipedia example: encoding"
+    (bytevector->string
+     (q-encoding-decode encoded-text)
+     charset)
+    decoded-text))
 
 (test-end "quoted-printable")