From 617b79fb3e0707b9bd0b446db73a2b1d7f6f3f94 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Wed, 10 Jun 2026 15:58:27 -0700 Subject: Add corplot --- tests/testthat/test-corplot.R | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/testthat/test-corplot.R (limited to 'tests/testthat/test-corplot.R') diff --git a/tests/testthat/test-corplot.R b/tests/testthat/test-corplot.R new file mode 100644 index 0000000..2aecdc1 --- /dev/null +++ b/tests/testthat/test-corplot.R @@ -0,0 +1,5 @@ +test_that("returns a ggplot object", { + x <- matrix(data = rnorm(100), nrow = 10) + p <- corplot(x) + inherits(p, 'ggplot') +}) -- cgit v1.2.3