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