You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/07/10 15:04:41 UTC

[2/3] git commit: Remove 'Wicket.Ajax -' from the test descriptions. It is already there because of set module name.

Remove 'Wicket.Ajax -' from the test descriptions. It is already there because of set module name.


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/d228fcfc
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d228fcfc
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/d228fcfc

Branch: refs/heads/master
Commit: d228fcfc03eebe37517c5a99e5452171824756cd
Parents: 9699e35
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Tue Jul 10 15:50:15 2012 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Jul 10 15:50:15 2012 +0300

----------------------------------------------------------------------
 wicket-core/src/test/js/ajax.js |   34 +++++++++++++++++-----------------
 1 files changed, 17 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/d228fcfc/wicket-core/src/test/js/ajax.js
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/ajax.js b/wicket-core/src/test/js/ajax.js
index 66453d4..23ae842 100644
--- a/wicket-core/src/test/js/ajax.js
+++ b/wicket-core/src/test/js/ajax.js
@@ -64,7 +64,7 @@ jQuery(document).ready(function() {
 
 		module('Wicket.Ajax');
 
-		asyncTest('Wicket.Ajax - processEvaluation with mock data.', function () {
+		asyncTest('processEvaluation with mock data.', function () {
 
 			expect(2);
 
@@ -75,7 +75,7 @@ jQuery(document).ready(function() {
 			execute(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - processEvaluation with mock data (priority-evaluate).', function () {
+		asyncTest('processEvaluation with mock data (priority-evaluate).', function () {
 
 			expect(2);
 
@@ -89,7 +89,7 @@ jQuery(document).ready(function() {
 		/**
 		 * Executes the second part of 'something|functionBody' by passing 'notify' function as parameter
 		 */
-		asyncTest('Wicket.Ajax - processEvaluation with identifier|code.', function () {
+		asyncTest('processEvaluation with identifier|code.', function () {
 
 			expect(2);
 
@@ -100,7 +100,7 @@ jQuery(document).ready(function() {
 			execute(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - processComponent, normal case.', function () {
+		asyncTest('processComponent, normal case.', function () {
 
 			expect(2);
 
@@ -120,7 +120,7 @@ jQuery(document).ready(function() {
 		});
 
 
-		asyncTest('Wicket.Ajax - processComponent() but the old component doesn\'t exist.', function () {
+		asyncTest('processComponent() but the old component doesn\'t exist.', function () {
 
 			expect(2);
 
@@ -147,7 +147,7 @@ jQuery(document).ready(function() {
 			execute(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - processComponent() replace a component with a table with scripts inside.', function () {
+		asyncTest('processComponent() replace a component with a table with scripts inside.', function () {
 
 			expect(4);
 
@@ -166,7 +166,7 @@ jQuery(document).ready(function() {
 		});
 
 
-		asyncTest('Wicket.Ajax - processComponent() replace title\'s text.', function () {
+		asyncTest('processComponent() replace title\'s text.', function () {
 
 			expect(1);
 
@@ -187,7 +187,7 @@ jQuery(document).ready(function() {
 			execute(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - non-wicket response.', function () {
+		asyncTest('non-wicket response.', function () {
 
 			expect(2);
 
@@ -211,7 +211,7 @@ jQuery(document).ready(function() {
 			execute(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - listen on several events.', function () {
+		asyncTest('listen on several events.', function () {
 
 			expect(4);
 
@@ -248,7 +248,7 @@ jQuery(document).ready(function() {
 		});
 
 
-		asyncTest('Wicket.Ajax - throttle execution.', function () {
+		asyncTest('throttle execution.', function () {
 
 			expect(2);
 
@@ -289,7 +289,7 @@ jQuery(document).ready(function() {
 			target.off("event1");
 		});
 
-		asyncTest('Wicket.Ajax - verify arguments to IAjaxCallListener handlers. Success scenario.', function () {
+		asyncTest('verify arguments to IAjaxCallListener handlers. Success scenario.', function () {
 
 			expect(11);
 
@@ -345,7 +345,7 @@ jQuery(document).ready(function() {
 			target.off("event1");
 		});
 
-		asyncTest('Wicket.Ajax - verify arguments to IAjaxCallListener handlers. Failure scenario.', function () {
+		asyncTest('verify arguments to IAjaxCallListener handlers. Failure scenario.', function () {
 
 			expect(8);
 
@@ -397,7 +397,7 @@ jQuery(document).ready(function() {
 		 * Only attributes with non-default values are transfered to the client side.
 		 * All defaults are initialized at the client side.
 		 */
-		asyncTest('Wicket.Ajax - verify default attributes.', function () {
+		asyncTest('verify default attributes.', function () {
 
 			expect(23);
 
@@ -437,7 +437,7 @@ jQuery(document).ready(function() {
 			Wicket.Ajax.ajax(attrs);
 		});
 
-		asyncTest('Wicket.Ajax - verify arguments to global listeners. Success scenario.', function () {
+		asyncTest('verify arguments to global listeners. Success scenario.', function () {
 
 			expect(11);
 
@@ -491,7 +491,7 @@ jQuery(document).ready(function() {
 			target.off("event1");
 		});
 
-		asyncTest('Wicket.Ajax - verify arguments to global listeners. Failure scenario.', function () {
+		asyncTest('verify arguments to global listeners. Failure scenario.', function () {
 
 			expect(11);
 
@@ -625,7 +625,7 @@ jQuery(document).ready(function() {
 		 * When using GET method the parameters should be added to 'settings.url'
 		 * WICKET-4606
 		 */
-		asyncTest('Wicket.Ajax - verify dynamic parameters are appended to the Ajax GET params.', function () {
+		asyncTest('verify dynamic parameters are appended to the Ajax GET params.', function () {
 
 			expect(5);
 
@@ -658,7 +658,7 @@ jQuery(document).ready(function() {
 		 * When using POST method the parameters should be added to 'settings.data'
 		 * WICKET-4606
 		 */
-		asyncTest('Wicket.Ajax - verify dynamic parameters are appended to the Ajax POST params.', function () {
+		asyncTest('verify dynamic parameters are appended to the Ajax POST params.', function () {
 
 			expect(7);