Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| context("console functionality") | |
| testthat::describe("console functionality", { | |
| skip_if_not_rstudio() | |
| rstudioapi::sendToConsole("x <- whereami()") | |
| it("class", { | |
| testthat::expect_true(inherits(x, c("whereami","character"))) | |
| }) | |
| it("value", { | |
| testthat::expect_equal(basename(x[1]), "Console") | |
| }) | |
| #rstudioapi::sendToConsole("cat('\f')") | |
| }) |