diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-08-21 23:45:14 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-08-21 23:45:14 -0600 |
commit | ffe145a6c67afed6fb68326edbc91cbd94a3f846 (patch) | |
tree | 8eb6f354beff2c35d1f823cf058f3fd4c74b49d0 /tests/sample_files/config | |
parent | 5c3b2c158180aa47003c5e82857594afd0c2bd7b (diff) |
feat: fuck it, delete tests
Diffstat (limited to 'tests/sample_files/config')
-rw-r--r-- | tests/sample_files/config/__init__.py | 0 | ||||
-rw-r--r-- | tests/sample_files/config/default.yaml | 23 | ||||
-rw-r--r-- | tests/sample_files/config/default_missing_dirs.yaml | 17 | ||||
-rw-r--r-- | tests/sample_files/config/default_missing_mandatory_key.yaml | 24 | ||||
-rw-r--r-- | tests/sample_files/config/default_missing_root_dir.yaml | 18 | ||||
-rw-r--r-- | tests/sample_files/config/multiple_default.yaml | 45 | ||||
-rw-r--r-- | tests/sample_files/config/multiple_default_one_doc_error.yaml | 39 |
7 files changed, 0 insertions, 166 deletions
diff --git a/tests/sample_files/config/__init__.py b/tests/sample_files/config/__init__.py deleted file mode 100644 index e69de29..0000000 --- a/tests/sample_files/config/__init__.py +++ /dev/null diff --git a/tests/sample_files/config/default.yaml b/tests/sample_files/config/default.yaml deleted file mode 100644 index 08121a6..0000000 --- a/tests/sample_files/config/default.yaml +++ /dev/null @@ -1,23 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - /: - cfg: - plt: "page.html" - tags: False - index: False - rss: False - sitemap: False -...
\ No newline at end of file diff --git a/tests/sample_files/config/default_missing_dirs.yaml b/tests/sample_files/config/default_missing_dirs.yaml deleted file mode 100644 index 03ee35a..0000000 --- a/tests/sample_files/config/default_missing_dirs.yaml +++ /dev/null @@ -1,17 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: -# test missing dirs (doesn't have any) -...
\ No newline at end of file diff --git a/tests/sample_files/config/default_missing_mandatory_key.yaml b/tests/sample_files/config/default_missing_mandatory_key.yaml deleted file mode 100644 index b5554f7..0000000 --- a/tests/sample_files/config/default_missing_mandatory_key.yaml +++ /dev/null @@ -1,24 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -# test missing mandatory key -# title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - /: - cfg: - plt: "page.html" - tags: False - index: False - rss: False - sitemap: False -...
\ No newline at end of file diff --git a/tests/sample_files/config/default_missing_root_dir.yaml b/tests/sample_files/config/default_missing_root_dir.yaml deleted file mode 100644 index 896e141..0000000 --- a/tests/sample_files/config/default_missing_root_dir.yaml +++ /dev/null @@ -1,18 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: -# test missing "/" dir in specific - something: -...
\ No newline at end of file diff --git a/tests/sample_files/config/multiple_default.yaml b/tests/sample_files/config/multiple_default.yaml deleted file mode 100644 index 54954b1..0000000 --- a/tests/sample_files/config/multiple_default.yaml +++ /dev/null @@ -1,45 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - /: - cfg: - plt: "page.html" - tags: False - index: False - rss: False - sitemap: False -... ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - /: - cfg: - plt: "page.html" - tags: False - index: False - rss: False - sitemap: False -...
\ No newline at end of file diff --git a/tests/sample_files/config/multiple_default_one_doc_error.yaml b/tests/sample_files/config/multiple_default_one_doc_error.yaml deleted file mode 100644 index 44d9beb..0000000 --- a/tests/sample_files/config/multiple_default_one_doc_error.yaml +++ /dev/null @@ -1,39 +0,0 @@ -%YAML 1.2 ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - /: - cfg: - plt: "page.html" - tags: False - index: False - rss: False - sitemap: False -... ---- -define: &root "$PYSSG_HOME/pyssg/site_example/" - -title: "Example site" -path: - src: !join [*root, "src"] - dst: !join [*root, "dst"] - plt: !join [*root, "plt"] - db: !join [*root, ".files"] -url: - main: "https://example.com" -fmt: - date: "%a, %b %d, %Y @ %H:%M %Z" -dirs: - # just removing all paths as it will cause an error -...
\ No newline at end of file |