Use lowercase-only characters for package names to fix compilation on Allegro
authorStelian Ionescu <sionescu@cddr.org>
Sat, 21 Apr 2012 14:43:33 +0000 (16:43 +0200)
committerStelian Ionescu <sionescu@cddr.org>
Sat, 21 Apr 2012 14:43:33 +0000 (16:43 +0200)
12 files changed:
fiveam.asd
src/check.lisp
src/classes.lisp
src/explain.lisp
src/fixture.lisp
src/packages.lisp
src/random.lisp
src/run.lisp
src/suite.lisp
src/test.lisp
t/example.lisp
t/tests.lisp

index ee2792c..7c16a78 100644 (file)
@@ -3,10 +3,10 @@
 (defpackage :it.bese.FiveAM.system
   (:use :common-lisp
         :asdf))
+(defsystem :fiveam
 
 (in-package :it.bese.FiveAM.system)
 
-(defsystem :FiveAM
     :author "Edward Marco Baringer <mb@bese.it>"
     :properties ((:test-suite-name . :it.bese.fiveam))
     :components ((:static-file "fiveam.asd")
index 8325bde..efac176 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; * Checks
 
index 5459580..44a7899 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 (defclass testable-object ()
   ((name :initarg :name :accessor name
index 7218733..42c6225 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; * Analyzing the results
 
index a3de037..07423ad 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; ** Fixtures
 
index 7e091e8..3628150 100644 (file)
@@ -17,8 +17,8 @@
 ;;;; developer to quickly and easily redefine, change, remove and run
 ;;;; tests.
 
-(defpackage :it.bese.FiveAM
   (:use :common-lisp :it.bese.arnesi)
+(defpackage :it.bese.fiveam
   (:nicknames :5am :fiveam)
   (:export
    ;; creating tests and test-suites
index 615e9ea..b9bf4e7 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; ** Random (QuickCheck-ish) testing
 
index 0ebc771..50697fc 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; * Running Tests
 
index 505a66f..eb2691d 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; * Test Suites
 
index e046859..ab0feeb 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
 ;;;; * Tests
 
index 5424f49..be9e113 100644 (file)
@@ -2,13 +2,13 @@
 
 ;;;; * FiveAM Example (poor man's tutorial)
 
-(asdf:oos 'asdf:load-op :FiveAM)
+(asdf:oos 'asdf:load-op :fiveam)
 
-(defpackage :it.bese.FiveAM.example
+(defpackage :it.bese.fiveam.example
   (:use :common-lisp
-       :it.bese.FiveAM))
+       :it.bese.fiveam))
 
-(in-package :it.bese.FiveAM.example)
+(in-package :it.bese.fiveam.example)
 
 ;;;; First we need some functions to test.
 
index d3ab4c7..4cb094f 100644 (file)
@@ -1,8 +1,8 @@
 ;;;; -*- lisp -*-
 
-(in-package :it.bese.FiveAM)
+(in-package :it.bese.fiveam)
 
-(in-suite :it.bese.FiveAM)
+(in-suite :it.bese.fiveam)
 
 (def-suite test-suite :description "Suite for tests which should fail.")