12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
|
describe('regression test for bug #4102', function(){
|
||
|
it('Object.create', function(){
|
||
|
Object.create.should.be.a('function');
|
||
|
|
||
|
var t = {
|
||
|
name: 'test123'
|
||
|
};
|
||
|
|
||
|
t.should.have.property('name').and.equal('test123');
|
||
|
});
|
||
|
});
|