diff options
Diffstat (limited to '_pytest/test_slackmpdmchannel.py')
-rw-r--r-- | _pytest/test_slackmpdmchannel.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/_pytest/test_slackmpdmchannel.py b/_pytest/test_slackmpdmchannel.py deleted file mode 100644 index 4a9d8da..0000000 --- a/_pytest/test_slackmpdmchannel.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_SlackMPDMChannel(realish_eventrouter): - e = realish_eventrouter - - print(e.sc["team"].channels) - #c = SlackChannel(e, **json.loads(chan)) - c = e.sc["team"].channels['G3ZGMF4RZ'] - - 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 |