diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-07-05 21:25:34 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-07-05 21:25:34 -0500 |
commit | 875e650865586b795af73373af288148ec231c49 (patch) | |
tree | d475307f1306caf17d4b09ab8b3f04dc88271237 /tests/test_import_variable.r | |
parent | 4db6f87488a28128ef45a1626ac9282281e2ba2c (diff) |
Moved tests into package.
Diffstat (limited to 'tests/test_import_variable.r')
-rw-r--r-- | tests/test_import_variable.r | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_import_variable.r b/tests/test_import_variable.r new file mode 100644 index 0000000..f35ff9c --- /dev/null +++ b/tests/test_import_variable.r @@ -0,0 +1,8 @@ +msg_1 <- "Initializing Client - R" +msg_2 <- "Initialized Client - R" +int_1 <- as.integer(3) +int_2 <- as.integer(155) +dbl_1 <- 3 +dbl_2 <- 12.345 +chk_1 <- TRUE +chk_2 <- FALSE |