Add test for HttpRequest and HttpUrl, bring classes up to spec, change how headers are passed around

This commit is contained in:
Kegan Myers 2014-03-03 12:46:09 -06:00
parent 67dd1feae8
commit c69cdbdca8
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
describe("Typertext.Http.HttpRequest", function() {
it("Exists", function() {
it("exists", function() {
expect(typeof Typertext.Http.HttpRequest).toBe("function");
});
});

View File

@ -0,0 +1,5 @@
describe("Typertext.Json.JsonResponse", function() {
it("exists", function() {
expect(typeof Typertext.Json.JsonResponse).toBe("function");
});
});