~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to ansi-tests/package-shadowing-symbols.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;-*- Mode:     Lisp -*-
 
2
;;;; Author:   Paul Dietz
 
3
;;;; Created:  Sun Feb 22 06:55:17 2004
 
4
;;;; Contains: Tests of PACKAGE-SHADOWING-SYMBOLS
 
5
 
 
6
(in-package :cl-test)
 
7
 
 
8
;;; Most tests of this function are in files for other package-related operators
 
9
 
 
10
(deftest package-shadowing-symbols.error.1
 
11
  (signals-error (package-shadowing-symbols) program-error)
 
12
  t)
 
13
 
 
14
(deftest package-shadowing-symbols.error.2
 
15
  (signals-error (package-shadowing-symbols "CL" nil) program-error)
 
16
  t)
 
17