1
0
Fork 0

[#25] Removed replaced vis tests from test-emmber_builder-gettersetter

closure/master
Mike Gerwitz 2011-10-27 19:53:43 -04:00
parent 5959956a27
commit a959e99b06
1 changed files with 0 additions and 36 deletions

View File

@ -128,42 +128,6 @@ function assertOnlyVisibility( vis, name, value, message )
}
( function testRecognizesPublicProperty()
{
buildGetterSetterQuick( { 'public': true } );
assertOnlyVisibility( 'public',
name,
value,
"Public properties are copied only to the public member prototype"
);
} )();
( function testRecognizesProtectedProperty()
{
buildGetterSetterQuick( { 'protected': true } );
assertOnlyVisibility( 'protected',
name,
value,
"Protected properties are copied only to the protected member prototype"
);
} )();
( function testRecognizesPrivateProperty()
{
buildGetterSetterQuick( { 'private': true } );
assertOnlyVisibility( 'private',
name,
value,
"Private properties are copied only to the private member prototype"
);
} )();
( function testCopiedIntoPublicPrototypeByDefault()
{
buildGetterSetterQuick();