aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/directive/selectSpec.js
diff options
context:
space:
mode:
authorIgor Minar2012-04-09 11:20:55 -0700
committerIgor Minar2012-04-09 11:48:54 -0700
commit0f89383d981d0144c6db92b163edcc545d6b5222 (patch)
tree3eb2c5acb653840f7f1cfea6e198d0889edac63c /test/ng/directive/selectSpec.js
parent10daefc6f466a21d9418437666461c80cf24fcfe (diff)
downloadangular.js-0f89383d981d0144c6db92b163edcc545d6b5222.tar.bz2
chore(tests): rename all directive names to the normalized form
Diffstat (limited to 'test/ng/directive/selectSpec.js')
-rw-r--r--test/ng/directive/selectSpec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ng/directive/selectSpec.js b/test/ng/directive/selectSpec.js
index 9518d988..611f30c9 100644
--- a/test/ng/directive/selectSpec.js
+++ b/test/ng/directive/selectSpec.js
@@ -23,7 +23,7 @@ describe('select', function() {
describe('select-one', function() {
- it('should compile children of a select without a ng-model, but not create a model for it',
+ it('should compile children of a select without a ngModel, but not create a model for it',
function() {
compile('<select>' +
'<option selected="true">{{a}}</option>' +
@@ -144,7 +144,7 @@ describe('select', function() {
});
- describe('ng-options', function() {
+ describe('ngOptions', function() {
function createSelect(attrs, blank, unknown) {
var html = '<select';
forEach(attrs, function(value, key) {
@@ -600,7 +600,7 @@ describe('select', function() {
});
- it('should support binding via ng-bind-template attribute', function () {
+ it('should support binding via ngBindTemplate directive', function () {
var option;
createSingleSelect('<option value="" ng-bind-template="blank is {{blankVal}}"></option>');
@@ -617,7 +617,7 @@ describe('select', function() {
});
- it('should support biding via ng-bind attribute', function () {
+ it('should support biding via ngBind attribute', function () {
var option;
createSingleSelect('<option value="" ng-bind="blankVal"></option>');
@@ -774,9 +774,9 @@ describe('select', function() {
});
- describe('ng-required', function() {
+ describe('ngRequired', function() {
- it('should allow bindings on ng-required', function() {
+ it('should allow bindings on ngRequired', function() {
createSelect({
'ng-model': 'value',
'ng-options': 'item.name for item in values',