summaryrefslogtreecommitdiffstats
path: root/test/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.js')
-rw-r--r--test/test.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/test.js b/test/test.js
index d1dbd2f..e50ac76 100644
--- a/test/test.js
+++ b/test/test.js
@@ -1,14 +1,3 @@
-test(".once() properly executed", function() {
- // Create one once() call.
- $('#test1 span').once().data('test1', 'foo');
-
- // Create another once() call.
- $('#test1 span').once().data('test1', 'bar');
-
- var data = $('#test1 span').data('test1');
- ok(data === "bar");
-});
-
test(".once('test1-2') properly executed", function() {
// Create one once('test1-2') call.
$('#test1 span').once('test1-2').data('test1-2', 'foo');