From: Kevin M. Rosenberg Date: Tue, 29 Apr 2003 09:47:10 +0000 (+0000) Subject: r4691: Auto commit for Debian build X-Git-Tag: debian-2.11.0-2~97 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=75d40f3a03e62192fef536292f3ec53bc576ae16 r4691: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 4d87fc0..6ba7b3c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,8 @@ cl-hyperobject (2.7.0-1) unstable; urgency=low * Add regression testing * Depend on cl-rt package * Use compat file rather than DH_COMPAT - + * Rework compute-effective-slot-definition + -- Kevin M. Rosenberg Mon, 28 Apr 2003 11:40:27 -0600 cl-hyperobject (2.6.5-1) unstable; urgency=low diff --git a/tests.lisp b/tests.lisp index 8ff7fba..10f98bf 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.3 2003/04/28 21:11:55 kevin Exp $ +;;;; $Id: tests.lisp,v 1.4 2003/04/29 09:47:10 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -120,11 +120,61 @@ Fax 123-0005 ") -(deftest p3 (view-to-string mary :category t) - "") +(deftest p3 (view-to-string mary :category :compact-text-labels) + " Person: + first-name Mary last-name Jackson dob Thu, 4 May 2000 03:02:01 resume Style & Grace +") -(deftest p4 (view-to-string mary :subobjects t :category t) - "") +(deftest p4 (view-to-string mary :subobjects t :category :html-labels) + "

Person:

    +
  • first-name Mary last-name Jackson dob Thu, 4 May 2000 03:02:01 resume Style & Grace +

    Addresss:

      +
    • title Home street 321 Shady Lane +

      Phone Numbers:

        +
      • title Voice phone-number 367-9812 +
      • +
      • title Fax phone-number 367-9813 +
      • +
      +
    • +
    • title Office street 113 Main St. +

      Phone Numbers:

        +
      • title Main line phone-number 123-0001 +
      • +
      • title Staff line phone-number 123-0002 +
      • +
      • title Fax phone-number 123-0005 +
      • +
      +
    • +
    +
  • +
+") (deftest p5 (view-to-string mary :subobjects t :category :xml-link-labels) - "") + " Person: + Mary Jackson Style & Grace + Addresss: +
Home 321 Shady Lane + Phone Numbers: + Voice 367-9812 + + Fax 367-9813 + + +
+
Office 113 Main St. + Phone Numbers: + Main line 123-0001 + + Staff line 123-0002 + + Fax 123-0005 + + +
+
+
+
+")