-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use path-style names for test packages and test suites
- Loading branch information
Showing
7 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*- | ||
;;; | ||
;;; --- iolib.base test suite. | ||
;;; --- iolib/base test suite. | ||
;;; | ||
|
||
(in-package :iolib-tests) | ||
(in-package :iolib/tests) | ||
|
||
(in-suite :iolib.base) | ||
(in-suite :iolib/base) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*- | ||
;;; | ||
;;; --- iolib.streams test suite. | ||
;;; --- iolib/streams test suite. | ||
;;; | ||
;;; Copyright (c) 2006-2007, Dr. Edmund Weitz. All rights reserved. | ||
;;; Copyright (c) 2007, Luis Oliveira <[email protected]> | ||
|
@@ -29,9 +29,9 @@ | |
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
(in-package :iolib-tests) | ||
(in-package :iolib/tests) | ||
|
||
(in-suite :iolib.streams) | ||
(in-suite :iolib/streams) | ||
|
||
(defclass my-file-stream (dual-channel-gray-stream) | ||
((path :initarg :path :reader file-stream-path))) | ||
|