Closed FedericoComoglio closed 1 year ago
Thanks for pointing this out. This is indeed a bug that should be fixed with the latest commit. Please give it a try by installing the latest github version and let me know if it doesn't work.
I have also exposed the function detect_backend()
so that the user can see which backend the package will use.
Also I have added tests for these cases here.
Thank you, @DavZim - I tested the hotfix by installing the latest devel version and I confirm it works. I made a couple additional observations that could be useful while testing, I'll share them in the coming days.
Hi @DavZim,
I've been testing this package and I encountered an issue when passing a simple tibble object from one of the examples. For instance,
throws
As expected,
data
is an object of classThe issue is reproducible with the dev version of the package (0.1.6.9001). I tested it on R 4.1.1 running
dplyr
1.1.3 anddataverifyr
0.1.6.9001.I figured you validate an object class in
dataverifyr:::detect_type
. In this chunkyou are looking for
"tibble"
but there is no handling of"tbl_df"
and/or"tbl"
. Since tibbles are such common objects, I was surprised this has not been reported before. Thanks a lot for your help.