summaryrefslogtreecommitdiff
path: root/tests/testthat/test-corplot.R
blob: 2aecdc1da97163808fb49ba30cb0d33dc185f17f (plain)
1
2
3
4
5
test_that("returns a ggplot object", {
	x <- matrix(data = rnorm(100), nrow = 10)
	p <- corplot(x)
	inherits(p, 'ggplot')
})