pman/tests.scm
2021-02-11 02:55:40 -08:00

18 lines
330 B
Scheme
Executable File

#!/usr/bin/env sh
exec guile -L . -s "$0" "$@"
!#
(use-modules (potato make)
(srfi srfi-1)
(srfi srfi-64))
(test-begin "initialization")
(test-assert "initialize doesn't set verbose flag"
(begin
(initialize #:arguments '() #:environ #f)
(not (%opt-verbose?))))
(test-end "initialization")