You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(deftest x [..]) registers a test in the symbol x. However, if the symbol x in the current package Y is obtained (by use) from another package X, then running #'test against the current package Y doesn't test x. Is this intended?
A concrete example is ht->pairs in rutils/pair-test. That symbol was originally from rtl, so (test :package (find-package "rutils.test")) skips the test ht->pairs.
The text was updated successfully, but these errors were encountered:
jcguu95
changed the title
deftest on symbols that are in the parent packagesdeftest on symbols from the parent packages
Apr 30, 2024
(deftest x [..])
registers a test in the symbolx
. However, if the symbolx
in the current packageY
is obtained (byuse
) from another packageX
, then running#'test
against the current packageY
doesn't testx
. Is this intended?A concrete example is
ht->pairs
in rutils/pair-test. That symbol was originally fromrtl
, so(test :package (find-package "rutils.test"))
skips the testht->pairs
.The text was updated successfully, but these errors were encountered: