From 2e8f9f383d3ebc78fb2cb8ad37ad855ac28d11dd Mon Sep 17 00:00:00 2001 From: ipknHama Date: Thu, 31 Jul 2014 00:50:38 +0900 Subject: begin implementation: mustache based template engine --- template_test/test.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 template_test/test.py (limited to 'template_test/test.py') diff --git a/template_test/test.py b/template_test/test.py new file mode 100755 index 0000000..b492396 --- /dev/null +++ b/template_test/test.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +import glob +import json +import os +import subprocess +for testfile in glob.glob("*.json"): + testdoc = json.load(open(testfile)) + for test in testdoc["tests"]: + if "partials" in test: + continue + if "partial" in test: + continue + if "lambda" in test["data"]: + continue + print testfile, test["name"] + print json.dumps(test["data"]) + print test["template"] + open('data', 'w').write(json.dumps(test["data"])) + open('template', 'w').write(test["template"]) + ret = subprocess.check_output("./mustachetest") + if ret != test["expected"]: + print 'Expected:',(test["expected"]) + print 'Actual:',(ret) + os.unlink('data') + os.unlink('template') + assert ret == test["expected"] -- cgit v1.2.3-54-g00ecf