(self)
| 61 | |
| 62 | class Authentication(Framework.BasicTestCase): |
| 63 | def testNoAuthentication(self): |
| 64 | g = github.Github() |
| 65 | self.assertEqual(g.get_user("jacquev6").name, "Vincent Jacques") |
| 66 | |
| 67 | def testBasicAuthentication(self): |
| 68 | with self.assertWarns(DeprecationWarning) as warning: |