X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-init.lisp;h=ae0c6b4bf26bdc954b8dc81c70e6f65c31d450e0;hb=6c70be35cc348b559d8aa869ecd0e14e27d5edbc;hp=0f4180ab4d3d301a459e8f2bc57ac78851f5e017;hpb=cd64aa8907160d3a2c2d0e531c831f1db44c7a61;p=clsql.git diff --git a/tests/test-init.lisp b/tests/test-init.lisp index 0f4180a..ae0c6b4 100644 --- a/tests/test-init.lisp +++ b/tests/test-init.lisp @@ -7,6 +7,11 @@ ;;;; ;;;; Initialisation utilities for running regression tests on CLSQL. ;;;; +;;;; 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) @@ -124,12 +129,6 @@ :make-default t :if-exists :old)) -(defmacro with-ignore-errors (&rest forms) - `(progn - ,@(mapcar - (lambda (x) (list 'ignore-errors x)) - forms))) - (defparameter company1 nil) (defparameter employee1 nil) (defparameter employee2 nil) @@ -144,9 +143,8 @@ (defun test-initialise-database () ;; Create the tables for our view classes - (ignore-errors - (clsql:drop-view-from-class 'employee) - (clsql:drop-view-from-class 'company)) + (ignore-errors (clsql:drop-view-from-class 'employee)) + (ignore-errors (clsql:drop-view-from-class 'company)) (clsql:create-view-from-class 'employee) (clsql:create-view-from-class 'company)