Skip to content

Instantly share code, notes, and snippets.

@infotroph
Last active February 22, 2017 22:42
Show Gist options
  • Save infotroph/01f52e5886e4463478bacbc7de318e84 to your computer and use it in GitHub Desktop.
Save infotroph/01f52e5886e4463478bacbc7de318e84 to your computer and use it in GitHub Desktop.
on.exit skipped in test_that
library(testthat)
options(tdtest=NULL)
test_that("options revert", {
op=options()
options(tdtest="testing")
on.exit(options(op))
})
getOption("tdtest")
# [1] "testing"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment