6 var inherit = require('..');
8 describe('inherit(a, b)', function(){
9 it('should inherit b\'s prototype', function(){
13 Animal.prototype.species = 'unknown';
15 inherit(Loki, Animal);
18 loki.species.should.equal('unknown');
19 loki.constructor.should.equal(Loki);