コード例 #1
0
ファイル: google_voice.py プロジェクト: E3Dev/pytomation
class Google_VoiceTests(TestCase):
    def setUp(self):
        self.gv = Google_Voice(user='******', password='******')
    
    def test_instantiation(self):
        self.assertIsInstance(self.gv, Google_Voice)

    def test_send(self):
        self.gv.command((Command.MESSAGE, '7777777777', 'This is the test'))
コード例 #2
0
ファイル: google_voice.py プロジェクト: mrwhatever/pytomation
class Google_VoiceTests(TestCase):
    def setUp(self):
        self.gv = Google_Voice(user='******', password='******')

    def test_instantiation(self):
        self.assertIsInstance(self.gv, Google_Voice)

    def test_send(self):
        self.gv.command((Command.MESSAGE, '7777777777', 'This is the test'))
コード例 #3
0
ファイル: google_voice.py プロジェクト: E3Dev/pytomation
 def setUp(self):
     self.gv = Google_Voice(user='******', password='******')
コード例 #4
0
ファイル: google_voice.py プロジェクト: mrwhatever/pytomation
 def setUp(self):
     self.gv = Google_Voice(user='******', password='******')