From 81b56ed858fc0621907085d93ac4ac73674b16cb Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 22 Aug 2008 13:58:19 -0400 Subject: Fixed up some more tests - renamed misspelled filenames and removed executable status. --- tests/markdown-test/angle-links-and-img.html | 0 tests/markdown-test/angle-links-and-img.txt | 0 tests/markdown-test/blockquotes-with-code-blocks.html | 16 ++++++++++++++++ tests/markdown-test/blockquotes-with-code-blocks.txt | 11 +++++++++++ tests/markdown-test/blockquotes-with-dode-blocks.html | 16 ---------------- tests/markdown-test/blockquotes-with-dode-blocks.txt | 11 ----------- 6 files changed, 27 insertions(+), 27 deletions(-) mode change 100755 => 100644 tests/markdown-test/angle-links-and-img.html mode change 100755 => 100644 tests/markdown-test/angle-links-and-img.txt create mode 100644 tests/markdown-test/blockquotes-with-code-blocks.html create mode 100644 tests/markdown-test/blockquotes-with-code-blocks.txt delete mode 100644 tests/markdown-test/blockquotes-with-dode-blocks.html delete mode 100644 tests/markdown-test/blockquotes-with-dode-blocks.txt (limited to 'tests') diff --git a/tests/markdown-test/angle-links-and-img.html b/tests/markdown-test/angle-links-and-img.html old mode 100755 new mode 100644 diff --git a/tests/markdown-test/angle-links-and-img.txt b/tests/markdown-test/angle-links-and-img.txt old mode 100755 new mode 100644 diff --git a/tests/markdown-test/blockquotes-with-code-blocks.html b/tests/markdown-test/blockquotes-with-code-blocks.html new file mode 100644 index 0000000..e7c79d9 --- /dev/null +++ b/tests/markdown-test/blockquotes-with-code-blocks.html @@ -0,0 +1,16 @@ +
+

Example:

+
+sub status {
+    print "working";
+}
+
+
+

Or:

+
+sub status {
+    return "working";
+}
+
+
+
\ No newline at end of file diff --git a/tests/markdown-test/blockquotes-with-code-blocks.txt b/tests/markdown-test/blockquotes-with-code-blocks.txt new file mode 100644 index 0000000..c31d171 --- /dev/null +++ b/tests/markdown-test/blockquotes-with-code-blocks.txt @@ -0,0 +1,11 @@ +> Example: +> +> sub status { +> print "working"; +> } +> +> Or: +> +> sub status { +> return "working"; +> } diff --git a/tests/markdown-test/blockquotes-with-dode-blocks.html b/tests/markdown-test/blockquotes-with-dode-blocks.html deleted file mode 100644 index e7c79d9..0000000 --- a/tests/markdown-test/blockquotes-with-dode-blocks.html +++ /dev/null @@ -1,16 +0,0 @@ -
-

Example:

-
-sub status {
-    print "working";
-}
-
-
-

Or:

-
-sub status {
-    return "working";
-}
-
-
-
\ No newline at end of file diff --git a/tests/markdown-test/blockquotes-with-dode-blocks.txt b/tests/markdown-test/blockquotes-with-dode-blocks.txt deleted file mode 100644 index c31d171..0000000 --- a/tests/markdown-test/blockquotes-with-dode-blocks.txt +++ /dev/null @@ -1,11 +0,0 @@ -> Example: -> -> sub status { -> print "working"; -> } -> -> Or: -> -> sub status { -> return "working"; -> } -- cgit v1.2.3