Sha256: 5180c5f0a7b8e86b3f740abb1a7e2a4214d12c8978703fadab8e7ffedce24866
Contents?: true
Size: 502 Bytes
Versions: 133
Compression:
Stored size: 502 Bytes
Contents
(ql:quickload "lisp-unit") #-xlisp-test (load "hello-world") (defpackage #:hello-world-test (:use #:common-lisp #:lisp-unit)) (in-package #:hello-world-test) (define-test hello-world-test (assert-equal "Hello World!" (hw:hello-world))) (define-test hello-alice-test (assert-equal "Hello Alice!" (hw:hello-world "Alice"))) (define-test hello-bob-test (assert-equal "Hello Bob!" (hw:hello-world "Bob"))) #-xlisp-test (let ((*print-errors* t) (*print-failures* t)) (run-tests :all))
Version data entries
133 entries across 133 versions & 1 rubygems