1
0
Fork 0

Moved constructor tests into their own file

closure/master
Mike Gerwitz 2010-11-10 19:21:53 -05:00
parent 94835d290a
commit bebaee7b46
2 changed files with 67 additions and 39 deletions

View File

@ -0,0 +1,66 @@
/**
* Tests Class class
*
* Copyright (C) 2010 Mike Gerwitz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
* @package core
*/
require( './common' );
var assert = require( 'assert' ),
Class = require( 'class' );
// these two variables are declared outside of the class to ensure that they
// will still be set even if the context of the constructor is wrong
var construct_count = 0,
construct_context = null;
// create a basic test class
var Foo = Class.extend(
{
__construct: function()
{
construct_count++;
construct_context = this;
},
});
assert.ok(
( Foo.prototype.__construct instanceof Function ),
"Provided properties should be copied to the new class prototype"
);
assert.equal(
construct_count,
0,
"Constructor should not be called before class is instantiated"
);
var obj = new Foo();
assert.equal(
construct_count,
1,
"Constructor should be invoked once the class is instantiated"
);
assert.equal(
obj,
construct_context,
"Constructor should be invoked within the context of the class instance"
);

View File

@ -32,20 +32,8 @@ assert.ok(
);
// these two variables are declared outside of the class to ensure that they
// will still be set even if the context of the constructor is wrong
var construct_count = 0,
construct_context = null;
var Foo = Class.extend();
// create a basic test class
var Foo = Class.extend(
{
__construct: function()
{
construct_count++;
construct_context = this;
},
});
assert.ok(
( Foo instanceof Object ),
@ -57,29 +45,3 @@ assert.ok(
"Created class contains extend method in prototype"
);
assert.ok(
( Foo.prototype.__construct instanceof Function ),
"Provided properties should be copied to the new class prototype"
);
assert.equal(
construct_count,
0,
"Constructor should not be called before class is instantiated"
);
var obj = new Foo();
assert.equal(
construct_count,
1,
"Constructor should be invoked once the class is instantiated"
);
assert.equal(
obj,
construct_context,
"Constructor should be invoked within the context of the class instance"
);