Should a testitem be baremodule
rather than a module
?
#199
Labels
speculative
a feature idea that we are undecided about
baremodule
rather than a module
?
#199
...so that users can define a function named
eval
if they wish (which in Julia v1.12 (JuliaLang/julia#55949) would be an error, they'd have to instead extendBase.eval
or use another name)If we were to use a
baremodule
, we'd probably still need to defineinclude
(since some users seem to preferinclude
'ing a file than using atestsetup
) e.g. by definingusing Base; include(args...) = Base.include($mod, args...)
where$mod
is the name of the testitembaremodule
.The text was updated successfully, but these errors were encountered: