Hi guys
I have developed packagea that has a data set data_everywhere with LazyData: true in the DESCRIPTION file. I have another package packageb that needs data_everywhere from packagea. I've added packagea as an "Depends" item in the DESCRIPTION file (rather than as "Import") as "Depends" will attach the data set rather than simply loading NAMESPACE (which does not include data set).
When I check() and install() packageb, everything works as expected. However, when I test() packageb, I get errors saying that it can't find data_everywhere.
Is this linked to Issue 161?
Hi guys
I have developed
packageathat has a data setdata_everywherewithLazyData: truein theDESCRIPTIONfile. I have another packagepackagebthat needsdata_everywherefrompackagea. I've addedpackageaas an "Depends" item in theDESCRIPTIONfile (rather than as "Import") as "Depends" will attach the data set rather than simply loadingNAMESPACE(which does not include data set).When I
check()andinstall()packageb, everything works as expected. However, when Itest()packageb, I get errors saying that it can't finddata_everywhere.Is this linked to Issue 161?