Skip to content

Commit

Permalink
Add TODOs for missing test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox committed Jan 26, 2018
1 parent 21814d2 commit 51a895d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/logic_adapter_tests/test_multi_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,34 @@ def test_add_adapter(self):

self.assertEqual(adapter_count_after, adapter_count_before + 1)

def test_get_adapters(self):
"""
TODO
"""
import unittest
raise unittest.SkipTest('This test needs to be written.')

def test_get_initialization_functions(self):
"""
TODO
"""
import unittest
raise unittest.SkipTest('This test needs to be written.')

def test_insert_logic_adapter(self):
"""
TODO
"""
import unittest
raise unittest.SkipTest('This test needs to be written.')

def test_remove_logic_adapter(self):
"""
TODO
"""
import unittest
raise unittest.SkipTest('This test needs to be written.')

def test_set_chatbot(self):
adapter = MultiLogicAdapter()
adapter.set_chatbot(self.chatbot)
Expand Down

0 comments on commit 51a895d

Please sign in to comment.