File: py-configparser-tests.asd

package info (click to toggle)
cl-py-configparser 20170830-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 88 kB
  • sloc: lisp: 706; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


(in-package #:cl-user)

(defpackage #:py-configparser-tests-system
    (:use #:cl #:asdf))

(in-package #:py-configparser-tests-system)

(defsystem py-configparser-tests
    :name "py-configparser-tests"
    :author "Erik Huelsmann"
    :version "1.0-dev"
    :license "MIT"
    :description "Tests for 'Common Lisp implementation of the Python ConfigParser module'"
    :depends-on (#:py-configparser)
    :components ((:file "tests")))