We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a8aec commit 83df48cCopy full SHA for 83df48c
1 file changed
_pytest/test_channel.py
@@ -1,4 +1,9 @@
1
from slackclient._channel import Channel
2
+import pytest
3
-def test_channel(channel):
4
+def test_Channel(channel):
5
assert type(channel) == Channel
6
+
7
+@pytest.mark.xfail
8
+def test_Channel_send_message(channel):
9
+ channel.send_message('hi')
0 commit comments