We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5f04f commit aea2bd3Copy full SHA for aea2bd3
1 file changed
tests/testthat/test-create_virtualenv.R
@@ -0,0 +1,18 @@
1
+test_that("find_python returns a valid path", {
2
+ testthat::skip_on_cran()
3
+ python_path <- Sys.which("python3")
4
+ if (python_path == "") {
5
+ python_path <- Sys.which("python")
6
+ }
7
+ expect_true(python_path != "")
8
+})
9
+
10
+test_that("install_acro function exists and is callable", {
11
12
+ expect_true(is.function(install_acro))
13
14
15
+test_that("create_virtualenv function exists and is callable", {
16
17
+ expect_true(is.function(create_virtualenv))
18
0 commit comments