Files
iD/test/spec/Entity.js
Tom MacWright f19e5196b3 Update tests, coding spec, and more.
Rewrite Entities and object creators.
2012-10-25 19:34:26 -04:00

12 lines
203 B
JavaScript

describe('Entity', function() {
var entity;
beforeEach(function() {
entity = iD.Entity();
});
it('has no entity type', function() {
expect(entity.entityType).toEqual('');
});
});