blob: e4ccb9efd98c7ad93e8e5f18a1dda0243fde00e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* selectable_core.js
*/
(function($) {
module("selectable: core");
test("testname", function() {
ok(false, "missing test - untested code is broken code.");
});
})(jQuery);
|