aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/directive/ngBindSpec.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/ngBindSpec.js
parent10daefc6f466a21d9418437666461c80cf24fcfe (diff)
downloadangular.js-0f89383d981d0144c6db92b163edcc545d6b5222.tar.bz2
chore(tests): rename all directive names to the normalized form
Diffstat (limited to 'test/ng/directive/ngBindSpec.js')
-rw-r--r--test/ng/directive/ngBindSpec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ng/directive/ngBindSpec.js b/test/ng/directive/ngBindSpec.js
index ad4d30ff..628b0092 100644
--- a/test/ng/directive/ngBindSpec.js
+++ b/test/ng/directive/ngBindSpec.js
@@ -1,6 +1,6 @@
'use strict';
-describe('ng-bind-*', function() {
+describe('ngBind*', function() {
var element;
@@ -9,7 +9,7 @@ describe('ng-bind-*', function() {
});
- describe('ng-bind', function() {
+ describe('ngBind', function() {
it('should set text', inject(function($rootScope, $compile) {
element = $compile('<div ng-bind="a"></div>')($rootScope);
@@ -55,9 +55,9 @@ describe('ng-bind-*', function() {
});
- describe('ng-bind-template', function() {
+ describe('ngBindTemplate', function() {
- it('should ng-bind-template', inject(function($rootScope, $compile) {
+ it('should ngBindTemplate', inject(function($rootScope, $compile) {
element = $compile('<div ng-bind-template="Hello {{name}}!"></div>')($rootScope);
$rootScope.name = 'Misko';
$rootScope.$digest();
@@ -74,7 +74,7 @@ describe('ng-bind-*', function() {
});
- describe('ng-bind-html', function() {
+ describe('ngBindHtml', function() {
it('should set html', inject(function($rootScope, $compile) {
element = $compile('<div ng-bind-html="html"></div>')($rootScope);
@@ -100,7 +100,7 @@ describe('ng-bind-*', function() {
});
- describe('ng-bind-html-unsafe', function() {
+ describe('ngBindHtmlUnsafe', function() {
it('should set unsafe html', inject(function($rootScope, $compile) {
element = $compile('<div ng-bind-html-unsafe="html"></div>')($rootScope);