From 748e96919195f780c0785273fcf33c50d5fa4b4f Mon Sep 17 00:00:00 2001 From: Daniel Schauenberg Date: Sat, 12 Jun 2010 02:03:02 +0200 Subject: [PATCH] add unittest for mustache in tag class --- unittest.vim | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/unittest.vim b/unittest.vim index ed9ebd5..b864032 100644 --- a/unittest.vim +++ b/unittest.vim @@ -403,12 +403,18 @@ finish { 'category': 'mustache', 'tests': [ - { + { 'name': "div#{{foo}}", 'query': "div#{{foo}}", 'type': "mustache", 'result': "
\n", - }, + }, + { + 'name': "div.{{foo}}", + 'query': "div.{{foo}}", + 'type': "mustache", + 'result': "
\n", + }, ], }, ]