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