]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge pull request #133 from cirosantilli/better-bold-italic-test
authorCiro Santilli <ciro.santilli@gmail.com>
Mon, 6 Oct 2014 10:02:52 +0000 (12:02 +0200)
committerCiro Santilli <ciro.santilli@gmail.com>
Mon, 6 Oct 2014 10:02:52 +0000 (12:02 +0200)
Improve bold and italic tests.

test/syntax.vader

index 4f0a17551168f8d1dedf0fd3fd2176ff942cf6c8..ece36eee3ca88a8d0db3edcce970ac73dce5decc 100644 (file)
@@ -1,14 +1,18 @@
-Given mkd (bold);
-**bold** not bold
+Given mkd;
+a **b** c
 
-Execute (SyntaxOf(pattern)):
+Execute (bold):
+  AssertNotEqual SyntaxOf('a'), 'htmlBold'
   AssertEqual SyntaxOf('b'), 'htmlBold'
+  AssertNotEqual SyntaxOf('c'), 'htmlBold'
 
-Given mkd (italic);
-*italic*
+Given mkd;
+a *b* c
 
-Execute (SyntaxOf(pattern)):
-  AssertEqual SyntaxOf('i'), 'htmlItalic'
+Execute (italic):
+  AssertNotEqual SyntaxOf('a'), 'htmlItalic'
+  AssertEqual SyntaxOf('b'), 'htmlItalic'
+  AssertNotEqual SyntaxOf('c'), 'htmlItalic'
 
 # Links