public
Description: Markdown processing with Nu. Use with any Nu or Objective-C project. Created by Grayson Hansard.
Homepage: http://programming.nu/posts/2007/10/10/markdown-in-nu
Clone URL: git://github.com/timburks/numarkdown.git
Added test task to Nukefile.

There are two groups of tests.  Run them both with "nuke test".

* The tests in the MarkdownTests directory are from John Gruber's
Markdown test suite, which you can get here:
http://daringfireball.net/projects/downloads/MarkdownTest_1.0_2007-05-09.t
gz

* The tests in the SimpleTests directory are diagnostic tests that
we are using to isolate problems that we find in the larger Markdown
tests.

Currently all 6 of 6 SimpleTests pass, but 17 of 23 MarkdownTests fail.
Many of the failures are over minor issues, but there are still some
significant problems to fix.
timburks (author)
Tue Oct 23 15:20:56 -0700 2007
commit  af40ce8b1ed390a9ced938ff2483ae1348907248
tree    a2a86909ff8b5ffd17a7f9e0d6296a23b66a5b4c
parent  ef9f29715010dc89d1697e2afc7efe83f57271de
...
1
 
 
 
2
3
4
5
6
...
1
2
3
4
5
6
7
 
8
0
@@ -1,5 +1,7 @@
0
 
0
+(task "test" is
0
+ (SH "nutest test/test_markdown.nu"))
0
+
0
 (task "clean" is
0
       (SH "rm test/SimpleTests/*.html")
0
       (SH "rm test/MarkdownTests/*.html"))
0
-
0
\ No newline at end of file

Comments

    No one has commented yet.