]> 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.

1  2 
test/syntax.vader

diff --combined test/syntax.vader
index 4f0a17551168f8d1dedf0fd3fd2176ff942cf6c8,8471695ccb9a23177314909630fd20d85bbd6b9e..ece36eee3ca88a8d0db3edcce970ac73dce5decc
@@@ -1,14 -1,18 +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
  
@@@ -72,42 -76,3 +76,42 @@@ Execute (multiline math)
    AssertNotEqual SyntaxOf('a'), 'mkdMath'
    AssertEqual SyntaxOf('b'), 'mkdMath'
    AssertNotEqual SyntaxOf('c'), 'mkdMath'
 +
 +# YAML frontmatter
 +
 +Given mkd;
 +---
 +a: b
 +---
 +
 +Execute (YAML frontmatter is controlled by the option):
 +  AssertNotEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 +  let g:vim_markdown_frontmatter=1
 +  syn off | syn on
 +  AssertEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 +  let g:vim_markdown_frontmatter=0
 +  syn off | syn on
 +  AssertNotEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 +
 +Given mkd;
 +
 +---
 +a: b
 +---
 +
 +Execute (YAML frontmatter only works if it's the first thing in the file):
 +  let g:vim_markdown_frontmatter=1
 +  syn off | syn on
 +  AssertNotEqual SyntaxOf('a'), 'yamlBlockMappingKey'
 +
 +Given mkd;
 +---
 +a: b
 +---
 +
 +---
 +
 +Execute (rules are not mistaken by YAML frontmatter delimiters):
 +  let g:vim_markdown_frontmatter=1
 +  syn off | syn on
 +  AssertEqual SyntaxAt(5, 1), 'mkdRule'