I think this issue reflects a problem with my understanding of devtools, but it's possible it's my understanding with r2oxygen.
When I run `devtools::run_examples()`, it throws an error when the example includes a data.frame that I haven't loaded explicitly with `data()`. I've set LazyData to TRUE in the DESCRIPTION file (
https://github.com/wibeasley/NlsyLinksStaging/blob/3e8436efe5c96ddf2d1f607996fd3091c9c390c6/NlsyLinks/DESCRIPTION#L25)
Unexpectedly to me, the error isn't thrown when I run `devtools::check()` or click RStudio's check button. When I reverted back to devtools 0.8, the same behavior existed, so it's not an issue with devtools 1.0.
There are two ways I can avoid the problem with `devtools::run_examples()`:
2) Append `exportPattern("^[[:alpha:]]+")` to the NAMESPACE file created by `devtools::document(roclets = c("collate", "namespace","rd") )`
Also, I'm curious why `devtools::run_examples()` returns an error, but `devtools::check()` does not?
Thanks, Will