Result of buildProp() in tests unneeded
parent
9d9d00388c
commit
9a5fe96c3e
|
@ -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 ],
|
||||||
|
|
Loading…
Reference in New Issue