r9232: OODML LOOP now works on Lispworks
[clsql.git] / tests / test-oodml.lisp
index a3396e5ef3c95bcefdfd824dce8babfa7794c868..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))
-;  ("Lenin" "Stalin" "Trotsky"))
+(deftest :oodml/iteration/3
+    (loop for (e) being the records in 
+          (select 'employee :where [married] :order-by [emplid])
+     collect (slot-value e 'last-name))
+  ("Lenin" "Stalin" "Trotsky"))
 
 ))