Use "^test" instead of "^test-".
+2004-02-23 TAKAHASHI Kaoru <kaoru@kaisei.org>
+
+ * lunit.el (lunit-make-test-suite-from-class): Fix regexp.
+ Use "^test" instead of "^test-".
+
2004-02-19 TAKAHASHI Kaoru <kaoru@kaisei.org>
* lunit.el (lunit-assert): Avoid double-eval `condtion-expr'.
(mapatoms
(lambda (symbol)
(if (and (fboundp symbol)
- (string-match "^test-" (symbol-name 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)))