aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_slackdmchannel.py
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2019-04-02 10:03:32 +0200
committerTrygve Aaberge <trygveaa@gmail.com>2019-04-08 15:11:57 +0200
commit82147d2d2a47927528e993816ee9393a4aa15b83 (patch)
tree421dd9f37c7fc1a2ff09abebcd9e4e20f1200d97 /_pytest/test_slackdmchannel.py
parentdbae7898342136c4cd937c93971070c91920fd22 (diff)
downloadwee-slack-82147d2d2a47927528e993816ee9393a4aa15b83.tar.gz
Delete tests
These tests don't do any assertions, so they are not very useful.
Diffstat (limited to '_pytest/test_slackdmchannel.py')
-rw-r--r--_pytest/test_slackdmchannel.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/_pytest/test_slackdmchannel.py b/_pytest/test_slackdmchannel.py
deleted file mode 100644
index c6dc224..0000000
--- a/_pytest/test_slackdmchannel.py
+++ /dev/null
@@ -1,22 +0,0 @@
-from __future__ import print_function, unicode_literals
-
-from mock import Mock
-#from wee_slack import SlackChannel
-
-def test_SlackDMChannel(realish_eventrouter):
- e = realish_eventrouter
-
- print(e.sc["team"].channels)
- #c = SlackChannel(e, **json.loads(chan))
- c = e.sc["team"].channels['D3ZEQULHZ']
-
- print(c.formatted_name())
- c.is_someone_typing = Mock(return_value=True)
- c.channel_buffer = Mock(return_value=True)
- print(c.create_buffer())
- print(c.rename())
- print(c.current_short_name)
- print(c.formatted_name())
- print(c.rename())
- print(c.formatted_name())
-# assert False