コード例 #1
0
 def test_get_host_exception(self):
     del settings.DJANGO_TWILIO_SMS_SITE_HOST
     absolute_uri = AbsoluteURI('test', 'test')
     with self.assertRaises(ImproperlyConfigured):
         absolute_uri.get_host()
コード例 #2
0
 def test_get_host_no_exception(self):
     absolute_uri = AbsoluteURI('test', 'test')
     self.assertEqual('www.test.com', absolute_uri.get_host())