From 8557e3e6b10266bebb04e07d0cd13f098485d672 Mon Sep 17 00:00:00 2001 From: aheinri5 <Anna@netzkritzler.de> Date: Thu, 7 Jan 2021 18:08:19 +0100 Subject: [PATCH] [base] moved default paths to options() in zzz.R --- R/default_paths.R | 48 ----------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 R/default_paths.R diff --git a/R/default_paths.R b/R/default_paths.R deleted file mode 100644 index 117cca7..0000000 --- a/R/default_paths.R +++ /dev/null @@ -1,48 +0,0 @@ - -#===== Getters to speed up tests, change these to fit your system! ===== - - -#'get_default_sim_path -#'@description Utility function for testing -get_default_sim_path <- function(){ - - default_sim_path <- - "D:/OGS_sims/" - - return(default_sim_path) -} - - -#'get_default_script_path -#'@description Utility function for testing -get_default_script_path <- function(){ - - default_script_path <- - "D:/OGS_scripts/" - - return(default_script_path) -} - - -#'get_default_benchmark_path -#'@description Utility function for testing -get_default_benchmark_path <- function(){ - - default_benchmark_path <- - "D:/Programme/OpenGeoSys/ogs-master-Tests-Data/Tests/Data/" - - return(default_benchmark_path) -} - - -#'get_default_ogs_bin_path -#'@description Utility function for testing -get_default_ogs_bin_path <- function(){ - - default_ogs_bin_path <- - paste0("D:/Programme/OpenGeoSys/", - "ogs-6.3.2-Windows-10.0.14393-x64-python-3.7.2-de-utils", - "/bin/") - - return(default_ogs_bin_path) -} -- GitLab