rgrannell1 / kea

Composable Functional Programming in R
16 stars 3 forks source link

xExclude not exported! #77

Closed rgrannell1 closed 9 years ago

rgrannell1 commented 9 years ago

Tests seem to work even when functions aren't exported by Kea. An additional test must be added before the next release to check that all required functions are exported.

rgrannell1 commented 9 years ago

Added quick manual test for the moment. Found that xByColkeys was a missing export.

load_kea_export <- function (export) {
    do.call(`::`, list('kea', export))
}
lapply( 
    ls(getNamespace('kea'), pattern = '^x[A-Z]'), 
    load_kea_export )