summaryrefslogtreecommitdiff
path: root/src/content/post/testing
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/post/testing')
-rw-r--r--src/content/post/testing/draft-post.md9
-rw-r--r--src/content/post/testing/long-title.md8
-rw-r--r--src/content/post/testing/missing-content.md6
-rw-r--r--src/content/post/testing/unique-tags.md12
4 files changed, 0 insertions, 35 deletions
diff --git a/src/content/post/testing/draft-post.md b/src/content/post/testing/draft-post.md
deleted file mode 100644
index a0edc55..0000000
--- a/src/content/post/testing/draft-post.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: "A working draft title"
-description: "This post is for testing the draft post functionality"
-publishDate: "10 March 2024"
-tags: ["test"]
-draft: true
----
-
-If this is working correctly, this post should only be accessible in a dev environment, as well as any tags that are unique to this post.
diff --git a/src/content/post/testing/long-title.md b/src/content/post/testing/long-title.md
deleted file mode 100644
index f79f330..0000000
--- a/src/content/post/testing/long-title.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-title: "Lorem ipsum dolor sit, amet consectetur adipisicing elit. Id"
-description: "This post is purely for testing if the css is correct for the title on the page"
-publishDate: "01 Feb 2023"
-tags: ["test"]
----
-
-## Testing the title tag
diff --git a/src/content/post/testing/missing-content.md b/src/content/post/testing/missing-content.md
deleted file mode 100644
index 4b10c6f..0000000
--- a/src/content/post/testing/missing-content.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "This post doesn't have any content"
-description: "This post is purely for testing the table of content, which should not be rendered"
-publishDate: "22 Feb 2023"
-tags: ["test", "toc"]
----
diff --git a/src/content/post/testing/unique-tags.md b/src/content/post/testing/unique-tags.md
deleted file mode 100644
index 887d279..0000000
--- a/src/content/post/testing/unique-tags.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: "Unique tags validation"
-publishDate: "30 January 2023"
-description: "This post is used for validating if duplicate tags are removed, regardless of the string case"
-tags: ["blog", "blog", "Blog", "test", "bloG", "Test", "BLOG"]
----
-
-## This post is to test zod transform
-
-If you open the file `src/content/post/unique-tags.md`, the tags array has a number of duplicate blog strings of various cases.
-
-These are removed as part of the removeDupsAndLowercase function found in `src/content/config.ts`.