def test_wrong_endpoint(self):
     """Test wrong endpoint"""
     print('Test wrong endpoint')
     botan = Botan(self.token)
     botan.url_template = 'https://api.botaaaaan.io/traccc?token={token}&uid={uid}&name={name}'
     message = MessageMock(self._chat_id)
     result = botan.track(message, 'named event')
     self.assertFalse(result)
 def test_wrong_endpoint(self):
     """Test wrong endpoint"""
     print('Test wrong endpoint')
     botan = Botan(self.token)
     botan.url_template = 'https://api.botaaaaan.io/traccc?token={token}&uid={uid}&name={name}'
     message = MessageMock(self._chat_id)
     result = botan.track(message, 'named event')
     self.assertFalse(result)
 def test_track_fail(self):
     """Test fail when sending event to botan"""
     print('Test fail when sending event to botan')
     botan = Botan(self.token)
     botan.url_template = 'https://api.botan.io/traccc?token={token}&uid={uid}&name={name}'
     message = MessageMock(self._chat_id)
     result = botan.track(message, 'named event')
     self.assertFalse(result)
 def test_track_fail(self):
     """Test fail when sending event to botan"""
     print('Test fail when sending event to botan')
     botan = Botan(self.token)
     botan.url_template = 'https://api.botan.io/traccc?token={token}&uid={uid}&name={name}'
     message = MessageMock(self._chat_id)
     result = botan.track(message, 'named event')
     self.assertFalse(result)