From a959e99b06716afb37ec3ed5cb1adfde42b12d8f Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 27 Oct 2011 19:53:43 -0400 Subject: [PATCH] [#25] Removed replaced vis tests from test-emmber_builder-gettersetter --- test/test-member_builder-gettersetter.js | 36 ------------------------ 1 file changed, 36 deletions(-) diff --git a/test/test-member_builder-gettersetter.js b/test/test-member_builder-gettersetter.js index 4e400a4..404b8fc 100644 --- a/test/test-member_builder-gettersetter.js +++ b/test/test-member_builder-gettersetter.js @@ -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();