import unittest

from tests.holodeck import Holodeck
from twilio.rest import Client


class IntegrationTestCase(unittest.TestCase):
    def setUp(self):
        super(IntegrationTestCase, self).setUp()
        self.account_sid = "AC" + "a" * 32
        self.auth_token = "AUTHTOKEN"
        self.holodeck = Holodeck()
        self.client = Client(
            username=self.account_sid,
            password=self.auth_token,
            http_client=self.holodeck,
        )
