Sha256: 34e4ec1fb716d32e86f5d04212a9fe8d54978d54f19c2dd3fc452e2f5a5bd681
Contents?: true
Size: 1.96 KB
Versions: 11
Compression:
Stored size: 1.96 KB
Contents
(function () { "use strict"; var of = require('../builder/object_factory'); exports['oPattern initialization'] = { 'test oPattern initializes correctly' : function(test){ var p = new of.oPattern('00-atoms/00-global', '00-colors.mustache', { d: 123}); test.equals(p.name, '00-atoms-00-global-00-colors'); test.equals(p.subdir, '00-atoms/00-global'); test.equals(p.fileName, '00-colors'); test.equals(p.jsonFileData.d, 123); test.equals(p.patternName, 'colors'); test.equals(p.patternLink, '00-atoms-00-global-00-colors/00-atoms-00-global-00-colors.html'); test.equals(p.patternGroup, 'atoms'); test.equals(p.patternSubGroup, 'global'); test.equals(p.flatPatternPath, '00-atoms-00-global'); test.equals(p.key, 'atoms-colors'); test.equals(p.template, ''); test.equals(p.patternPartial, ''); test.equals(p.lineage.length, 0); test.equals(p.lineageIndex.length, 0); test.equals(p.lineageR.length, 0); test.equals(p.lineageRIndex.length, 0); test.done(); } }; exports['oBucket initialization'] = { 'test oBucket initializes correctly' : function(test){ var b = new of.oBucket('test'); test.equals(b.bucketNameLC, 'test'); test.equals(b.bucketNameUC, 'Test'); test.equals(b.navItems.length, 0); test.equals(b.navItemsIndex.length, 0); test.equals(b.patternItems.length, 0); test.equals(b.patternItemsIndex.length, 0); test.done(); } }; exports['oNavItem initialization'] = { 'test oNavItem initializes correctly' : function(test){ var ni = new of.oNavItem('test'); test.equals(ni.sectionNameLC, 'test'); test.equals(ni.navSubItems.length, 0); test.equals(ni.navSubItemsIndex.length, 0); test.done(); } }; exports['oSubNavItem initialization'] = { 'test oSubNavItem initializes correctly' : function(test){ var sni = new of.oNavSubItem('test'); test.equals(sni.patternName, 'Test'); test.equals(sni.patternPath, ''); test.equals(sni.patternPartial, ''); test.done(); } }; }());
Version data entries
11 entries across 11 versions & 1 rubygems