/test/packages.lisp

http://github.com/edicl/hunchentoot · Lisp · 37 lines · 7 code · 8 blank · 22 comment · 0 complexity · d293be168c82c9eb76fa39756d300ea6 MD5 · raw file

  1. ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
  2. ;;; Copyright (c) 2004-2010, Dr. Edmund Weitz. All rights reserved.
  3. ;;; Redistribution and use in source and binary forms, with or without
  4. ;;; modification, are permitted provided that the following conditions
  5. ;;; are met:
  6. ;;; * Redistributions of source code must retain the above copyright
  7. ;;; notice, this list of conditions and the following disclaimer.
  8. ;;; * Redistributions in binary form must reproduce the above
  9. ;;; copyright notice, this list of conditions and the following
  10. ;;; disclaimer in the documentation and/or other materials
  11. ;;; provided with the distribution.
  12. ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
  13. ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  14. ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  15. ;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  16. ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  17. ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  18. ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  19. ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  20. ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  21. ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  22. ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. (in-package :cl-user)
  24. (defpackage #:hunchentoot-test
  25. (:nicknames #:tbnl-test)
  26. (:use :cl :cl-who :hunchentoot)
  27. (:export #:test-hunchentoot))
  28. (defpackage #:hunchentoot-test-user
  29. (:use :cl :hunchentoot))