| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import Model from '../src/model';
- let Car, car;
- describe( 'Model', () => {
- beforeEach( () => {
- Car = class extends Model {};
- car = new Car( {
- color: 'red',
- year: 2015
- } );
- } );
- it( 'should set attributes on creation', () => {
- expect( car ).to.have.property( 'color', 'red' );
- expect( car ).to.have.property( 'year', 2015 );
- const spy = sinon.spy();
- car.on( 'change:color', spy );
- car.color = 'blue';
- expect( spy.called ).to.be.true;
- } );
- it( 'should add properties on creation', () => {
- const car = new Car( null, {
- prop: 1
- } );
- expect( car ).to.have.property( 'prop', 1 );
- } );
- } );
|