diff options
author | Ryan Huber <rhuber@gmail.com> | 2017-02-03 08:05:58 -0800 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2017-02-03 08:05:58 -0800 |
commit | 3a0ea46cced1d7c0c9bccbefdf59886e0b0714dc (patch) | |
tree | 168e55959789f6d01b59c9bdab3c3b5c620ae3a0 | |
parent | bc4777310a0e695a8993964bec89f7b5bafd5ad4 (diff) | |
download | wee-slack-3a0ea46cced1d7c0c9bccbefdf59886e0b0714dc.tar.gz |
more tests
-rw-r--r-- | _pytest/test_slackchannel.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/_pytest/test_slackchannel.py b/_pytest/test_slackchannel.py index 5f04d69..b93c1dd 100644 --- a/_pytest/test_slackchannel.py +++ b/_pytest/test_slackchannel.py @@ -17,4 +17,17 @@ def test_SlackChannel(realish_eventrouter): print c.formatted_name() print c.rename() print c.formatted_name() -# assert False + + print "-------" + print c == "random" + print "-------" + print c == "#random" + print "-------" + print c == "weeslacktest.slack.com.#random" + print "-------" + print c == "weeslacktest.slack.com.random" + print "-------" + print c == "dandom" + + print e.weechat_controller.buffers + assert False |