Exemplo n.º 1
0
 def test_build_authenticate_header(self):
     self.assertEqual(oauth.build_authenticate_header(),
                      {'WWW-Authenticate': 'OAuth realm=""'})
     self.assertEqual(oauth.build_authenticate_header('foo'),
                      {'WWW-Authenticate': 'OAuth realm="foo"'})
Exemplo n.º 2
0
 def test_build_authenticate_header(self):
   self.assertEqual(oauth.build_authenticate_header(), {'WWW-Authenticate': 
                                                        'OAuth realm=""'})
   self.assertEqual(oauth.build_authenticate_header('foo'), 
                    {'WWW-Authenticate': 'OAuth realm="foo"'})