mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-27 04:50:43 +00:00
33 lines
829 B
JavaScript
33 lines
829 B
JavaScript
describe('hx-put attribute', function() {
|
|
beforeEach(function() {
|
|
this.server = makeServer()
|
|
clearWorkArea()
|
|
})
|
|
afterEach(function() {
|
|
this.server.restore()
|
|
clearWorkArea()
|
|
})
|
|
|
|
it('issues a PUT request', function() {
|
|
this.server.respondWith('PUT', '/test', function(xhr) {
|
|
xhr.respond(200, {}, 'Putted!')
|
|
})
|
|
|
|
var btn = make('<button hx-put="/test">Click Me!</button>')
|
|
btn.click()
|
|
this.server.respond()
|
|
btn.innerHTML.should.equal('Putted!')
|
|
})
|
|
|
|
it('issues a PUT request w/ data-* prefix', function() {
|
|
this.server.respondWith('PUT', '/test', function(xhr) {
|
|
xhr.respond(200, {}, 'Putted!')
|
|
})
|
|
|
|
var btn = make('<button data-hx-put="/test">Click Me!</button>')
|
|
btn.click()
|
|
this.server.respond()
|
|
btn.innerHTML.should.equal('Putted!')
|
|
})
|
|
})
|