Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-11-18 14:01:58 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-11-18 14:01:58 +0300
commitfcaa89f66a30bbe377e9af137acb881c3a6740af (patch)
tree0b0f0af08012e2313ac4b39c7aa3b9c38ea1fba5 /tests
parent6eeb33d3c352e450627bc794b53731a016d3c8a2 (diff)
Disable skeleton code
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/features/bootstrap/CoreContext.php48
1 files changed, 24 insertions, 24 deletions
diff --git a/tests/integration/features/bootstrap/CoreContext.php b/tests/integration/features/bootstrap/CoreContext.php
index c0694c7..786a5a8 100644
--- a/tests/integration/features/bootstrap/CoreContext.php
+++ b/tests/integration/features/bootstrap/CoreContext.php
@@ -880,30 +880,30 @@ class CoreContext implements Context, SnippetAcceptingContext {
}
}
- /**
- * @BeforeSuite
- */
- public static function addFilesToSkeleton(){
- for ($i=0; $i<5; $i++){
- file_put_contents("../../core/skeleton/" . "textfile" . "$i" . ".txt", "ownCloud test text file\n");
- }
- if (!file_exists("../../core/skeleton/FOLDER")) {
- mkdir("../../core/skeleton/FOLDER", 0777, true);
- }
-
- }
-
- /**
- * @AfterSuite
- */
- public static function removeFilesFromSkeleton(){
- for ($i=0; $i<5; $i++){
- self::removeFile("../../core/skeleton/", "textfile" . "$i" . ".txt");
- }
- if (!is_dir("../../core/skeleton/FOLDER")) {
- rmdir("../../core/skeleton/FOLDER");
- }
- }
+// /**
+// * @BeforeSuite
+// */
+// public static function addFilesToSkeleton(){
+// for ($i=0; $i<5; $i++){
+// file_put_contents("../../core/skeleton/" . "textfile" . "$i" . ".txt", "ownCloud test text file\n");
+// }
+// if (!file_exists("../../core/skeleton/FOLDER")) {
+// mkdir("../../core/skeleton/FOLDER", 0777, true);
+// }
+//
+// }
+//
+// /**
+// * @AfterSuite
+// */
+// public static function removeFilesFromSkeleton(){
+// for ($i=0; $i<5; $i++){
+// self::removeFile("../../core/skeleton/", "textfile" . "$i" . ".txt");
+// }
+// if (!is_dir("../../core/skeleton/FOLDER")) {
+// rmdir("../../core/skeleton/FOLDER");
+// }
+// }
/**
* @BeforeScenario