]> git.donarmstrong.com Git - rsem.git/blobdiff - EBSeq/BiocInstaller/unitTests/test_biocinstallRepos.R
Use PATH env to instead the variable
[rsem.git] / EBSeq / BiocInstaller / unitTests / test_biocinstallRepos.R
diff --git a/EBSeq/BiocInstaller/unitTests/test_biocinstallRepos.R b/EBSeq/BiocInstaller/unitTests/test_biocinstallRepos.R
deleted file mode 100644 (file)
index e6fb520..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-repos <- biocinstallRepos()
-
-test_biocinstallRepos_named_repositories <- function()
-{
-
-    allOS <- c("BioCsoft", "CRAN", "BioCann", "BioCexp", "BioCextra")
-    windowsOnly <- "CRANextra"
-
-    checkTrue(all(allOS %in% names(repos)))
-    if (.Platform$OS.type == "windows")
-    {
-        checkTrue(windowsOnly %in% names(repos))
-    } else {
-        checkTrue(!windowsOnly %in% names(repos))
-    }
-   
-}
-
-test_biocinstallRepos_noNA_repositories <- function()
-{
-    checkTrue(!any(is.na(repos)))
-}
-
-test_biocinstallRepos_order <- function()
-{
-    checkIdentical("BioCsoft", names(repos)[[1]])
-}