Update domain name to kpe.io
[lml.git] / tests.lisp
index 3b881f386b3318b5dd144283cbf7fdee41273ea7..ab61331b6f626b1717d0d5ef2e89fb3a7ca0cd47 100644 (file)
 (deftest lml.3
   (with-output-to-string (s)
     (let ((*html-output* s)
-         (a 5.5d0))
+          (a 5.5d0))
       (p a)))
   "<p>5.5d0</p>")
 
 (deftest lml.4
   (with-output-to-string (s)
     (let ((*html-output* s)
-         (a 0.75))
+          (a 0.75))
       (img "http://localhost/test.png" :width a)))
   "<img src=\"http://localhost/test.png\" width=\"0.75\" />")
 
   (with-output-to-string (s)
     (let ((*html-output* s))
       (div "Start"
-          (p "Testing"))))
+           (p "Testing"))))
   "<div>Start<p>Testing</p></div>")
 
 (deftest lml.6
   (with-output-to-string (s)
     (let ((*html-output* s))
       (div :style "font-weight:bold"
-          "Start"
-          (p-c a_class "Testing"))))
+           "Start"
+           (p-c a_class "Testing"))))
   "<div style=\"font-weight:bold\">Start<p class=\"a_class\">Testing</p></div>")