This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +17
-5
lines changed
2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -87,20 +87,20 @@ angular.scenario.dsl('using', function() {
87
87
*/
88
88
angular . scenario . dsl ( 'binding' , function ( ) {
89
89
function contains ( text , value ) {
90
- return text && text . indexOf ( value ) >= 0 ;
90
+ return text && text . indexOf ( value ) >= 0 ;
91
91
}
92
92
return function ( name ) {
93
93
return this . addFutureAction ( "select binding '" + name + "'" , function ( $window , $document , done ) {
94
94
var elements = $document . elements ( '.ng-binding' ) ;
95
95
for ( var i = 0 ; i < elements . length ; i ++ ) {
96
96
var element = new elements . init ( elements [ i ] ) ;
97
- if ( contains ( element . attr ( 'ng:bind' ) , name ) >= 0 ||
98
- contains ( element . attr ( 'ng:bind-template' ) , name ) >= 0 ) {
97
+ if ( contains ( element . attr ( 'ng:bind' ) , name ) ||
98
+ contains ( element . attr ( 'ng:bind-template' ) , name ) ) {
99
99
done ( null , element . text ( ) ) ;
100
100
return ;
101
101
}
102
102
}
103
- throw "Could not find binding: " + name ;
103
+ done ( 'Binding selector ' + name + ' did not match.' ) ;
104
104
} ) ;
105
105
} ;
106
106
} ) ;
Original file line number Diff line number Diff line change @@ -271,7 +271,19 @@ describe("angular.scenario.dsl", function() {
271
271
expect ( $root . futureResult ) . toEqual ( 'foo some baz' ) ;
272
272
} ) ;
273
273
274
- it ( 'should return error if no binding exists' , function ( ) {
274
+ it ( 'should match bindings by substring match' , function ( ) {
275
+ doc . append ( '<pre class="ng-binding" ng:bind="foo.bar() && test.baz() | filter">binding value</pre>' ) ;
276
+ $root . dsl . binding ( 'test.baz' ) ;
277
+ expect ( $root . futureResult ) . toEqual ( 'binding value' ) ;
278
+ } ) ;
279
+
280
+ it ( 'should return error if no bindings in document' , function ( ) {
281
+ $root . dsl . binding ( 'foo.bar' ) ;
282
+ expect ( $root . futureError ) . toMatch ( / d i d n o t m a t c h / ) ;
283
+ } ) ;
284
+
285
+ it ( 'should return error if no binding matches' , function ( ) {
286
+ doc . append ( '<span class="ng-binding" ng:bind="foo">some value</span>' ) ;
275
287
$root . dsl . binding ( 'foo.bar' ) ;
276
288
expect ( $root . futureError ) . toMatch ( / d i d n o t m a t c h / ) ;
277
289
} ) ;
You can’t perform that action at this time.
0 commit comments