+2004-02-18 TAKAHASHI Kaoru <kaoru@kaisei.org>
+
+ * lunit.el (lunit-make-test-suite-from-class): Restrict test
+ method name to test-*.
+
2004-02-17 Daiki Ueno <ueno@unixuser.org>
* smtp.el (smtp-starttls-program): New user option.
(mapatoms
(lambda (symbol)
(if (and (fboundp symbol)
+ (string-match "^test-" (symbol-name symbol))
(null (get symbol 'luna-method-qualifier)))
(push (lunit-make-test-case class symbol) tests)))
(luna-class-obarray (luna-find-class class)))