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