UNPKG

passbooker

Version:
26 lines (16 loc) 515 B
'use strict'; var Passbooker = require('../'); describe('Passbooker', function() { it('should have property `Template`', function(){ Passbooker.should.have.property('Template'); }); it('should have property `Pass`', function(){ Passbooker.should.have.property('Pass'); }); }); describe('Passbooker.Template', function() { it('should have property `Template`', function(){ var myTemplate = new Passbooker.Template('Generic'); Passbooker.should.have.property('Template'); }); });