示例#1
0
 def test_sign_and_send_replace_result(self, post_mock):
     response = outcomes.sign_and_send_replace_result(
         self.assignment, 'xml')
     post_mock.assert_called_with(
         'http://example.com/service_url',
         data='xml',
         auth=ANY,
         headers={'content-type': 'application/xml'})
     self.assertEqual(response, 'response')
示例#2
0
 def test_sign_and_send_replace_result(self, post_mock):
     response = outcomes.sign_and_send_replace_result(self.assignment, 'xml')
     post_mock.assert_called_with(
         'http://example.com/service_url',
         data='xml',
         auth=ANY,
         headers={'content-type': 'application/xml'}
     )
     self.assertEqual(response, 'response')