Skip to content

Commit

Permalink
passing on non-slack test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
sdoiron0330 committed May 31, 2023
1 parent 7cc4410 commit d1c147a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions nautobot_chatops/tests/test_dispatchers.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ def test_multi_input_dialog(self):
# pylint: disable=W0221
pass

def test_thread_ts_passed_into_slack_client(self):
"""thread_ts is a Slack specific implementation."""
# pylint: disable=W0221
pass


class TestWebExDispatcher(TestSlackDispatcher):
"""Test the WebExDispatcher class."""
Expand Down Expand Up @@ -272,6 +277,11 @@ def test_multi_input_dialog(self):
# pylint: disable=W0221
pass

def test_thread_ts_passed_into_slack_client(self):
"""thread_ts is a Slack specific implementation."""
# pylint: disable=W0221
pass

@patch("nautobot_chatops.dispatchers.webex.WebExDispatcher.send_markdown")
def test_send_large_table(self, mock_send_markdown):
"""Make sure send_large_table() is implemented."""
Expand Down Expand Up @@ -340,6 +350,11 @@ def test_send_snippet_title(self):
# pylint: disable W0221
pass

def test_thread_ts_passed_into_slack_client(self):
"""thread_ts is a Slack specific implementation."""
# pylint: disable=W0221
pass

@patch("nautobot_chatops.dispatchers.mattermost.MattermostDispatcher.send_blocks")
def test_multi_input_dialog(self, mock_send_blocks):
"""Make sure multi_input_dialog() is implemented."""
Expand Down

0 comments on commit d1c147a

Please sign in to comment.