aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2009-12-18 11:01:19 -0500
committerjeresig <jeresig@gmail.com>2009-12-18 11:01:19 -0500
commitb70872f70d720e5f25eea7fdf0453804074dc194 (patch)
tree9624b1f7de8c8650d5038c53645a7b4a85786668 /test
parent9368b188c06dd66d43e3a488465078e1d6eb765f (diff)
downloadjquery-b70872f70d720e5f25eea7fdf0453804074dc194.tar.gz
jquery-b70872f70d720e5f25eea7fdf0453804074dc194.zip
Renamed the 'fx' module to 'effects'. Should've been done a long time ago.
Diffstat (limited to 'test')
-rw-r--r--test/index.html2
-rw-r--r--test/unit/effects.js (renamed from test/unit/fx.js)4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/index.html b/test/index.html
index 6d34672d3..4632442a5 100644
--- a/test/index.html
+++ b/test/index.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="unit/selector.js"></script>
<script type="text/javascript" src="unit/event.js"></script>
<script type="text/javascript" src="unit/ajax.js"></script>
- <script type="text/javascript" src="unit/fx.js"></script>
+ <script type="text/javascript" src="unit/effects.js"></script>
<script type="text/javascript" src="unit/offset.js"></script>
</head>
diff --git a/test/unit/fx.js b/test/unit/effects.js
index b95979938..2c5616dd9 100644
--- a/test/unit/fx.js
+++ b/test/unit/effects.js
@@ -1,4 +1,4 @@
-module("fx");
+module("effects");
test("show()", function() {
expect(16);
@@ -619,4 +619,4 @@ test("animate with per-property easing", function(){
ok(_default_test_called, "Easing function (_default) called");
});
-}); \ No newline at end of file
+});