@@ -226,12 +226,6 @@ describe('Binder', function(){
226226 '</ul>' , sortedHtml ( a . view ) ) ;
227227 } ) ;
228228
229- it ( 'ExpandEntityTag' , function ( ) {
230- assertEquals (
231- '<div ng-entity="Person" ng:watch="$anchor.a:1"></div>' ,
232- this . compileToHtml ( '<div ng-entity="Person" ng:watch="$anchor.a:1"/>' ) ) ;
233- } ) ;
234-
235229 it ( 'DoNotOverwriteCustomAction' , function ( ) {
236230 var html = this . compileToHtml ( '<input type="submit" value="Save" action="foo();">' ) ;
237231 assertTrue ( html . indexOf ( 'action="foo();"' ) > 0 ) ;
@@ -612,20 +606,6 @@ describe('Binder', function(){
612606 assertEquals ( "male" , male . val ( ) ) ;
613607 } ) ;
614608
615- it ( 'ItShouldListenOnRightScope' , function ( ) {
616- var c = this . compile (
617- '<ul ng:init="counter=0; gCounter=0" ng:watch="w:counter=counter+1">' +
618- '<li ng:repeat="n in [1,2,4]" ng:watch="w:counter=counter+1;w:$root.gCounter=$root.gCounter+n"/></ul>' ) ;
619- c . scope . $eval ( ) ;
620- assertEquals ( 1 , c . scope . $get ( "counter" ) ) ;
621- assertEquals ( 7 , c . scope . $get ( "gCounter" ) ) ;
622-
623- c . scope . $set ( "w" , "something" ) ;
624- c . scope . $eval ( ) ;
625- assertEquals ( 2 , c . scope . $get ( "counter" ) ) ;
626- assertEquals ( 14 , c . scope . $get ( "gCounter" ) ) ;
627- } ) ;
628-
629609 it ( 'ItShouldRepeatOnHashes' , function ( ) {
630610 var x = this . compile ( '<ul><li ng:repeat="(k,v) in {a:0,b:1}" ng:bind=\"k + v\"></li></ul>' ) ;
631611 x . scope . $eval ( ) ;
0 commit comments