Skip to content

Commit 83df48c

Browse files
committed
add test reminders
1 parent e9a8aec commit 83df48c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

_pytest/test_channel.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
from slackclient._channel import Channel
2+
import pytest
23

3-
def test_channel(channel):
4+
def test_Channel(channel):
45
assert type(channel) == Channel
6+
7+
@pytest.mark.xfail
8+
def test_Channel_send_message(channel):
9+
channel.send_message('hi')

0 commit comments

Comments
 (0)