File: __init__.py

package info (click to toggle)
python-twilio 9.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,756 kB
  • sloc: python: 8,281; makefile: 65
file content (17 lines) | stat: -rw-r--r-- 474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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,
        )