Add simple binary utility tests

This commit is contained in:
kpdecker
2013-11-05 18:02:25 -06:00
parent 6f6eb89bd8
commit 96a45a4a96
4 changed files with 43 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
define(['handlebars.runtime'], function(Handlebars) {
Handlebars = Handlebars["default"]; var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {};
return templates['empty'] = template(function (Handlebars,depth0,helpers,partials,data) {
this.compilerInfo = [4,'>= 1.0.0'];
helpers = this.merge(helpers, Handlebars.helpers); data = data || {};
var buffer = "";
return buffer;
});
});