kis-js/tests/tests/ajax.js

12 lines
179 B
JavaScript
Executable File

(function(){
"use strict";
module("ajax");
test("Methods defined", function(){
expect(2);
ok($_.get, "AJAX get method");
ok($_.post, "AJAX post method");
});
}());