mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
spec/net.http.server: Add test for #1044
This commit is contained in:
parent
83c3e348f7
commit
9290f9588a
1 changed files with 12 additions and 0 deletions
12
spec/net_http_server_spec.lua
Normal file
12
spec/net_http_server_spec.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
describe("net.http.server", function ()
|
||||
local server = require "net.http.server";
|
||||
describe("events", function ()
|
||||
it("should work with util.helpers", function ()
|
||||
-- See #1044
|
||||
server.add_handler("GET host/foo/*", function () end, 0);
|
||||
server.add_handler("GET host/foo/bar", function () end, 0);
|
||||
local helpers = require "util.helpers";
|
||||
assert.is.string(helpers.show_events(server._events));
|
||||
end);
|
||||
end);
|
||||
end);
|
Loading…
Add table
Add a link
Reference in a new issue