mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 05:31:41 +00:00
update
This commit is contained in:
21
node_modules/component-inherit/test/inherit.js
generated
vendored
Normal file
21
node_modules/component-inherit/test/inherit.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
/**
|
||||
* Module dependencies.
|
||||
*/
|
||||
|
||||
var inherit = require('..');
|
||||
|
||||
describe('inherit(a, b)', function(){
|
||||
it('should inherit b\'s prototype', function(){
|
||||
function Loki(){}
|
||||
function Animal(){}
|
||||
|
||||
Animal.prototype.species = 'unknown';
|
||||
|
||||
inherit(Loki, Animal);
|
||||
|
||||
var loki = new Loki;
|
||||
loki.species.should.equal('unknown');
|
||||
loki.constructor.should.equal(Loki);
|
||||
})
|
||||
})
|
Reference in New Issue
Block a user