コード例 #1
0
 def test_start_with_client(self):
     arguments = MockArgumentParser()
     TelegramBotClient.TELEGRAM_CLIENT = MockTelegramBotClient(arguments)
     mock_bot = unittest.mock.Mock()
     update = []
     start(mock_bot, update)
コード例 #2
0
ファイル: test_client.py プロジェクト: Freiza/program-y
 def test_start_with_client(self):
     arguments = MockArgumentParser()
     TelegramBotClient.TELEGRAM_CLIENT = MockTelegramBotClient(arguments)
     mock_bot = unittest.mock.Mock()
     update = []
     start(mock_bot, update)
コード例 #3
0
 def test_start_no_client(self):
     TelegramBotClient.TELEGRAM_CLIENT = None
     mock_bot = unittest.mock.Mock()
     update = []
     with self.assertRaises(Exception):
         start(mock_bot, update)
コード例 #4
0
ファイル: test_client.py プロジェクト: Freiza/program-y
 def test_start_no_client(self):
     TelegramBotClient.TELEGRAM_CLIENT = None
     mock_bot = unittest.mock.Mock()
     update = []
     with self.assertRaises(Exception):
         start(mock_bot, update)