r9232: OODML LOOP now works on Lispworks
[clsql.git] / tests / test-oodml.lisp
index e30e396a130d38435195d1bf0806197cb21fc18e..7e875b26d8f182adcee256ca699364e15b79aa48 100644 (file)
                                            "Lenin"]])
  (("Lenin" "Widgets Inc.")))
 
-#||
 (deftest :oodml/iteration/3
-    (loop for (e) being the tuples in 
-          [select 'employee :where [married] :order-by [emplid]]
-          collect (slot-value e 'last-name))
+    (loop for (e) being the records in 
+          (select 'employee :where [married] :order-by [emplid])
+     collect (slot-value e 'last-name))
   ("Lenin" "Stalin" "Trotsky"))
-||#
 
 ))