1
0
Fork 0

Result of buildProp() in tests unneeded

closure/master
Mike Gerwitz 2011-01-20 21:53:18 -05:00
parent 9d9d00388c
commit 9a5fe96c3e
1 changed files with 3 additions and 9 deletions

View File

@ -49,9 +49,7 @@ function buildPropQuick( keywords )
( function testRecognizesPublicProperty()
{
var keywords = { 'public': true },
result = buildPropQuick( keywords )
;
buildPropQuick( { 'public': true } );
assert.equal(
members[ 'public' ][ name ],
@ -63,9 +61,7 @@ function buildPropQuick( keywords )
( function testRecognizesProtectedProperty()
{
var keywords = { 'protected': true },
result = buildPropQuick( keywords )
;
buildPropQuick( { 'protected': true } );
assert.equal(
members[ 'protected' ][ name ],
@ -77,9 +73,7 @@ function buildPropQuick( keywords )
( function testRecognizesPrivateProperty()
{
var keywords = { 'private': true },
result = buildPropQuick( keywords )
;
buildPropQuick( { 'private': true } );
assert.equal(
members[ 'private' ][ name ],