X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-oodml.lisp;h=c5867263fbb14704ebe6a5ed81079530fec791ca;hb=fa32c4233b4a02ae631602dbb0a234ab10df8aaf;hp=f64da4153ecec06db703740fb110eb1e1fd82f5d;hpb=7fe2be1c1362639b32fab48534f3dce614586ff4;p=clsql.git diff --git a/tests/test-oodml.lisp b/tests/test-oodml.lisp index f64da41..c586726 100644 --- a/tests/test-oodml.lisp +++ b/tests/test-oodml.lisp @@ -4,20 +4,24 @@ ;;;; Author: Marcus Pearce ;;;; Created: 01/04/2004 ;;;; Updated: $Id$ -;;;; ====================================================================== -;;;; -;;;; Description ========================================================== -;;;; ====================================================================== ;;;; ;;;; Tests for the CLSQL Object Oriented Data Definition Language ;;;; (OODML). ;;;; +;;;; This file is part of CLSQL. +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ====================================================================== (in-package #:clsql-tests) #.(clsql:locally-enable-sql-reader-syntax) +(setq *rt-oodml* + '( + (deftest :oodml/select/1 (mapcar #'(lambda (e) (slot-value e 'last-name)) (clsql:select 'employee :order-by [last-name])) @@ -237,5 +241,6 @@ ; collect (slot-value e 'last-name)) ; ("Lenin" "Stalin" "Trotsky")) +)) #.(clsql:restore-sql-reader-syntax-state)