diff options
Diffstat (limited to 'test/attributes/kt-error-url.js')
-rw-r--r-- | test/attributes/kt-error-url.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/attributes/kt-error-url.js b/test/attributes/kt-error-url.js deleted file mode 100644 index 4a573ef1..00000000 --- a/test/attributes/kt-error-url.js +++ /dev/null @@ -1,21 +0,0 @@ -describe("kt-error-url attribute", function(){ - beforeEach(function() { - this.server = makeServer(); - clearWorkArea(); - }); - afterEach(function() { - this.server.restore(); - clearWorkArea(); - }); - - it('Submits a POST with error content on bad request', function() - { - this.server.respondWith("POST", "/error", function(xhr){ - should.equal(JSON.parse(xhr.requestBody).detail.xhr.status, 404); - }); - var btn = make('<button kt-error-url="/error" kt-get="/bad">Click Me!</button>') - btn.click(); - this.server.respond(); - this.server.respond(); - }); -}) |