From ffe145a6c67afed6fb68326edbc91cbd94a3f846 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Mon, 21 Aug 2023 23:45:14 -0600 Subject: feat: fuck it, delete tests --- tests/sample_files/config/__init__.py | 0 tests/sample_files/config/default.yaml | 23 ----------- .../sample_files/config/default_missing_dirs.yaml | 17 -------- .../config/default_missing_mandatory_key.yaml | 24 ------------ .../config/default_missing_root_dir.yaml | 18 --------- tests/sample_files/config/multiple_default.yaml | 45 ---------------------- .../config/multiple_default_one_doc_error.yaml | 39 ------------------- 7 files changed, 166 deletions(-) delete mode 100644 tests/sample_files/config/__init__.py delete mode 100644 tests/sample_files/config/default.yaml delete mode 100644 tests/sample_files/config/default_missing_dirs.yaml delete mode 100644 tests/sample_files/config/default_missing_mandatory_key.yaml delete mode 100644 tests/sample_files/config/default_missing_root_dir.yaml delete mode 100644 tests/sample_files/config/multiple_default.yaml delete mode 100644 tests/sample_files/config/multiple_default_one_doc_error.yaml (limited to 'tests/sample_files/config') diff --git a/tests/sample_files/config/__init__.py b/tests/sample_files/config/__init__.py deleted file mode 100644 index e69de29..0000000 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 -- cgit v1.2.3-54-g00ecf