From 6a63cadc9a7738c9495bb1eec435908a11fec469 Mon Sep 17 00:00:00 2001 From: Yuri Takhteyev Date: Tue, 29 Jul 2008 09:33:27 -0700 Subject: Adding extensions tests. --- tests/extensions-x-codehilite/code.html | 19 +++++++++++++++++++ tests/extensions-x-codehilite/code.txt | 12 ++++++++++++ tests/extensions-x-tables/tables.html | 30 ++++++++++++++++++++++++++++++ tests/extensions-x-tables/tables.txt | 15 +++++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 tests/extensions-x-codehilite/code.html create mode 100644 tests/extensions-x-codehilite/code.txt create mode 100644 tests/extensions-x-tables/tables.html create mode 100644 tests/extensions-x-tables/tables.txt (limited to 'tests') diff --git a/tests/extensions-x-codehilite/code.html b/tests/extensions-x-codehilite/code.html new file mode 100644 index 0000000..43b09ea --- /dev/null +++ b/tests/extensions-x-codehilite/code.html @@ -0,0 +1,19 @@ + +

Some text +

+
1
+2
+3
+4
+5
+6
def __init__ (self, pattern) :
+    self.pattern = pattern
+    self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL)
+
+def getCompiledRegExp (self) :
+    return self.compiled_re
+
+

More text +

+ + diff --git a/tests/extensions-x-codehilite/code.txt b/tests/extensions-x-codehilite/code.txt new file mode 100644 index 0000000..6c62e6a --- /dev/null +++ b/tests/extensions-x-codehilite/code.txt @@ -0,0 +1,12 @@ + +Some text + + #!python + def __init__ (self, pattern) : + self.pattern = pattern + self.compiled_re = re.compile("^(.*)%s(.*)$" % pattern, re.DOTALL) + + def getCompiledRegExp (self) : + return self.compiled_re + +More text \ No newline at end of file diff --git a/tests/extensions-x-tables/tables.html b/tests/extensions-x-tables/tables.html new file mode 100644 index 0000000..fad47b2 --- /dev/null +++ b/tests/extensions-x-tables/tables.html @@ -0,0 +1,30 @@ + +

Before +

+ + + + + + +
a b
c d

Another +

+ + + + + + + + + + + + + + + +
a b
a b
a b
a b
c d

After +

+ + diff --git a/tests/extensions-x-tables/tables.txt b/tests/extensions-x-tables/tables.txt new file mode 100644 index 0000000..1cdab46 --- /dev/null +++ b/tests/extensions-x-tables/tables.txt @@ -0,0 +1,15 @@ +Before + +| a |* b *| +| [c](#) | *d* | + +Another + +| a | b | +| _a_ | b | +| a | b | +| a | b | +| c | *d* | + +After + -- cgit v1.2.3