diff options
| author | Misko Hevery | 2011-04-19 16:34:49 -0700 |
|---|---|---|
| committer | Misko Hevery | 2011-06-08 15:21:33 -0700 |
| commit | af285dd370aa1b6779bf67ac3bdc19da512aaac5 (patch) | |
| tree | 663140aa80b8ec312bdc0390f552d8c8f86a8dda /test/BinderSpec.js | |
| parent | 89e001b18a4f6d18caea1e9a3d015639feb4f1ee (diff) | |
| download | angular.js-af285dd370aa1b6779bf67ac3bdc19da512aaac5.tar.bz2 | |
Added ng:options directive
Closes #301
Diffstat (limited to 'test/BinderSpec.js')
| -rw-r--r-- | test/BinderSpec.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/BinderSpec.js b/test/BinderSpec.js index d78573bb..85387d8f 100644 --- a/test/BinderSpec.js +++ b/test/BinderSpec.js @@ -463,12 +463,6 @@ describe('Binder', function(){ assertEquals('123{{a}}{{b}}{{c}}', scope.$element.text()); }); - it('OptionShouldUpdateParentToGetProperBinding', function(){ - var scope = this.compile('<select name="s"><option ng:repeat="i in [0,1]" value="{{i}}" ng:bind="i"></option></select>'); - scope.$set('s', 1); - scope.$eval(); - assertEquals(1, scope.$element[0].selectedIndex); - }); it('RepeaterShouldBindInputsDefaults', function () { var scope = this.compile('<div><input value="123" name="item.name" ng:repeat="item in items"></div>'); |
