Sha256: c9028e5bba20e2b7b4ab886eddf98b60a8b538e004d67b56ef2065d0b9ef9485
Contents?: true
Size: 468 Bytes
Versions: 42
Compression:
Stored size: 468 Bytes
Contents
;; Load SRFI-64 lightweight testing specification (use-modules (srfi srfi-64)) ;; Suppress log file output. To write logs, comment out the following line: (module-define! (resolve-module '(srfi srfi-64)) 'test-log-to-file #f) ;; Require module (add-to-load-path (dirname (current-filename))) (use-modules (hello-world)) (test-begin "hello-world") (test-assert "Say Hi!" (equal? (hello) "Hello, World!")) (test-end "hello-world")
Version data entries
42 entries across 42 versions & 1 rubygems