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