diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-15 01:01:04 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-15 01:01:04 +0200 |
commit | fd174452eb2fdc268c2aa519a653fc0e93b20482 (patch) | |
tree | e95cc9e50e821e8105b09dac605ae64987cc6e6f /spec | |
parent | c59016f3d4dbf8805dfccbee7cc7a189ccf82bb1 (diff) | |
download | prosody-fd174452eb2fdc268c2aa519a653fc0e93b20482.tar.gz prosody-fd174452eb2fdc268c2aa519a653fc0e93b20482.zip |
util.poll: Test that it loads after being compiled
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_poll_spec.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/util_poll_spec.lua b/spec/util_poll_spec.lua new file mode 100644 index 00000000..a763be90 --- /dev/null +++ b/spec/util_poll_spec.lua @@ -0,0 +1,6 @@ +describe("util.poll", function () + it("loads", function () + require "util.poll" + end); +end); + |