Преглед изворни кода

Remove some sections from tests (#721).

Dan Helfman пре 1 година
родитељ
комит
a3f47a6418
2 измењених фајлова са 14 додато и 16 уклоњено
  1. 3 3
      tests/end-to-end/test_database.py
  2. 11 13
      tests/integration/config/test_generate.py

+ 3 - 3
tests/end-to-end/test_database.py

@@ -25,7 +25,7 @@ def write_configuration(
 source_directories:
     - {source_directory}
 repositories:
-    - {repository_path}
+    - path: {repository_path}
 borgmatic_source_directory: {borgmatic_source_directory}
 
 encryption_passphrase: "test"
@@ -96,7 +96,7 @@ def write_custom_restore_configuration(
 source_directories:
     - {source_directory}
 repositories:
-    - {repository_path}
+    - path: {repository_path}
 borgmatic_source_directory: {borgmatic_source_directory}
 
 encryption_passphrase: "test"
@@ -158,7 +158,7 @@ def write_simple_custom_restore_configuration(
 source_directories:
     - {source_directory}
 repositories:
-    - {repository_path}
+    - path: {repository_path}
 borgmatic_source_directory: {borgmatic_source_directory}
 
 encryption_passphrase: "test"

+ 11 - 13
tests/integration/config/test_generate.py

@@ -58,14 +58,13 @@ foo:
         - baz
         - quux
 
-location:
-    repositories:
-        - one
-        - two
+repositories:
+    - one
+    - two
 
-    # This comment should be kept.
-    # COMMENT_OUT
-    other: thing
+# This comment should be kept.
+# COMMENT_OUT
+other: thing
     '''
 
     # flake8: noqa
@@ -75,13 +74,12 @@ location:
 #         - baz
 #         - quux
 
-location:
-    repositories:
-        - one
-        - two
+repositories:
+    - one
+    - two
 
-    # This comment should be kept.
-#     other: thing
+# This comment should be kept.
+# other: thing
     '''
 
     assert module.comment_out_optional_configuration(config.strip()) == expected_config.strip()