Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
gendl
cl-smtp
Commits
7a5748fc
Commit
7a5748fc
authored
Feb 21, 2021
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed asdf dep in main system
parent
bbafff40
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
4 deletions
+33
-4
cl-smtp-tests.asd
cl-smtp-tests.asd
+27
-0
cl-smtp.asd
cl-smtp.asd
+2
-2
package.lisp
package.lisp
+1
-1
tests.lisp
tests.lisp
+3
-1
No files found.
cl-smtp-tests.asd
0 → 100755
View file @
7a5748fc
;;; -*- mode: Lisp -*-
;;; This file is part of CL-SMTP, the Lisp SMTP Client
;;; Copyright (C) 2004/2005/2006/2007/2008/2009/2010 Jan Idzikowski
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the Lisp Lesser General Public License
;;; (http://opensource.franz.com/preamble.html), known as the LLGPL.
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; Lisp Lesser GNU General Public License for more details.
;;; File: cl-smtp.asd
;;; Description: cl-smtp ASDF system definition file
(
asdf:defsystem
:cl-smtp-tests
:description
"Tests for Common Lisp smtp client."
:licence
"LLGPL"
:author
"Jan Idzikowski <jidzikowski@common-lisp.net>"
:maintainer
"Jan Idzikowski <jidzikowski@common-lisp.net>"
:version
"20200724.1"
:depends-on
(
:cl-smtp
)
:serial
t
:components
((
:file
"tests"
)))
cl-smtp.asd
View file @
7a5748fc
...
...
@@ -33,5 +33,5 @@
:components
((
:file
"package"
)
(
:file
"attachments"
)
(
:file
"cl-smtp"
)
(
:file
"mime-types"
)
(
:file
"tests"
)))
(
:file
"mime-types"
)
))
package.lisp
View file @
7a5748fc
...
...
@@ -19,7 +19,7 @@
(
in-package
:cl-user
)
(
defpackage
:cl-smtp
(
:use
:cl
:asdf
:flexi-streams
:trivial-gray-streams
)
(
:use
:cl
:flexi-streams
:trivial-gray-streams
)
(
:export
"SEND-EMAIL"
"WITH-SMTP-MAIL"
"SMTP-ERROR"
...
...
tests.lisp
View file @
7a5748fc
;; -*- mode: common-lisp; coding: utf-8 -*-
(
in-package
:cl-smtp
)
(
defpackage
:cl-smtp-tests
(
:use
:cl-smtp
))
(
in-package
:cl-smtp-tests
)
(
defparameter
*cl-smtp-tests*
(
make-hash-table
:test
'equal
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment