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 | 0b1a99c72c2e8150360a5218f05f640dd39aecf0 (patch) | |
tree | e95cc9e50e821e8105b09dac605ae64987cc6e6f | |
parent | fdb852fbbbb9e5da8e72a380e061f662d10f11c7 (diff) | |
download | prosody-0b1a99c72c2e8150360a5218f05f640dd39aecf0.tar.gz prosody-0b1a99c72c2e8150360a5218f05f640dd39aecf0.zip |
util.poll: Test that it loads after being compiled
-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); + |