From 5b8d2dbcb08c6983840afccd73abe2eed34bea10 Mon Sep 17 00:00:00 2001 From: Matt Secrest Date: Thu, 26 Oct 2023 20:41:41 -0700 Subject: [PATCH] sankeyplot template --- R/sankey_plot.R | 3 +++ tests/testthat/test-sankey_plot.R | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 R/sankey_plot.R create mode 100644 tests/testthat/test-sankey_plot.R diff --git a/R/sankey_plot.R b/R/sankey_plot.R new file mode 100644 index 0000000..cd4fe20 --- /dev/null +++ b/R/sankey_plot.R @@ -0,0 +1,3 @@ +sankey_plot <- function() { + +} diff --git a/tests/testthat/test-sankey_plot.R b/tests/testthat/test-sankey_plot.R new file mode 100644 index 0000000..8849056 --- /dev/null +++ b/tests/testthat/test-sankey_plot.R @@ -0,0 +1,3 @@ +test_that("multiplication works", { + expect_equal(2 * 2, 4) +})